Skip to content

Commit

Permalink
Add pipeline for GitHub stars (stn1slv#34)
Browse files Browse the repository at this point in the history
  • Loading branch information
stn1slv authored Aug 19, 2023
1 parent d48e483 commit 34bee1e
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 2 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/github-stars.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Update github stars

on:
schedule:
- cron: '0 0 * * 3' # Every Wednesday at midnight UTC
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Check out code
uses: actions/checkout@v3
- name: Init repo
run: |
git config --global user.name 'stn1slv'
git config --global user.email '[email protected]'
git pull origin main
- name: Run your commands here
run: |
# Replace this with the actual commands you want to run
wget https://github.com/stn1slv/markdown-github-stars-updater/releases/latest/markdown-github-stars-updater-linux-amd64 -o markdown-github-stars-updater
chmod +x ./markdown-github-stars-updater
./markdown-github-stars-updater README.md
- name: Commit report
run: |
git status
git add README.md
git commit -am "Github stars updated"
git push origin main
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ System integration is the process of linking together different IT systems (com
*Business Rules Engines and Business Rules Management Systems (BRMS) are software systems that allow organizations to define, manage, and execute business rules. These rules are used to automate decision-making processes, enforce business policies, and ensure regulatory compliance. A BRMS provides a way for organizations to centrally manage their business rules and make changes to them quickly and easily, without requiring changes to the underlying code. It is a valuable tool for businesses that need to be agile and respond quickly to changing market conditions.*
- [Drools](https://github.com/kiegroup/drools) - Open-source tool that supports Decision Model and Notation (DMN) models at Conformance level 3 with an Eclipse IDE plugin for core development.
- [Easy Rules](https://github.com/j-easy/easy-rules) - Simple Java rules engine for straightforward rule processing.
- [NxBRE](https://github.com/ddossot/NxBRE/wiki) - Open-source rule engine specifically designed for the .NET platform.
- [NxBRE](https://github.com/ddossot/NxBRE) - Open-source rule engine specifically designed for the .NET platform.
- [OpenL Tablets](https://github.com/openl-tablets/openl-tablets) - Open-source business rules engine (BRE, BRMS) and decision management system that allows users to define, manage, and execute business rules and decision tables.

<!--lint disable-->
Expand Down Expand Up @@ -220,7 +220,7 @@ System integration is the process of linking together different IT systems (com
<!--lint enable-->
### Integration Frameworks
*The Integration frameworks section includes software tools and libraries that help developers implement and manage integration patterns in their applications. These frameworks are based on well-established Enterprise Integration Patterns (EIPs), which provide a standard vocabulary and architecture for designing and implementing integration solutions. The frameworks in this section can help simplify the process of integrating different systems, applications, and data sources by providing pre-built connectors, message routing, and transformation capabilities.*
- [Apache Camel](https://github.com/apache/camel/) - A powerful integration framework that uses Enterprise Integration Patterns to connect and unify different transport APIs.
- [Apache Camel](https://github.com/apache/camel) - A powerful integration framework that uses Enterprise Integration Patterns to connect and unify different transport APIs.
- [Ballerina](https://github.com/ballerina-platform/ballerina-lang) - An open-source programming language that simplifies the creation, usage, and combination of network services.
- [Spring Integration](https://github.com/spring-projects/spring-integration) - An extension of the Spring programming model that supports Enterprise Integration Patterns, allowing for streamlined integration of various systems.

Expand Down

0 comments on commit 34bee1e

Please sign in to comment.