-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ba22eb0
commit a0d6d92
Showing
2 changed files
with
2 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,55 +8,12 @@ on: | |
|
||
jobs: | ||
|
||
############################################### | ||
###### rpi_ws281x submodule update check ###### | ||
############################################### | ||
|
||
update_submodule: | ||
name: 🔁 Update Submodule rpi_ws281x | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: ⬇ Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: hyperion-project/hyperion.ng | ||
persist-credentials: false | ||
fetch-depth: 0 | ||
submodules: recursive | ||
|
||
- name: 🔁 Update Submodule rpi_ws281x | ||
id: update | ||
run: git submodule update --remote --recursive dependencies/external/rpi_ws281x | ||
|
||
- name: ✅ Check git status | ||
id: status | ||
run: echo "status=$(git status -s)" >> $GITHUB_OUTPUT | ||
|
||
- name: ✏️ Add/Commit changes | ||
if: ${{ steps.status.outputs.status }} | ||
run: | | ||
git config --local user.email "[email protected]" | ||
git config --local user.name "Hyperion-Bot" | ||
git config --local diff.ignoreSubmodules dirty | ||
git commit -am "Update submodule rpi_ws281x" | ||
- name: 📦 Push changes | ||
if: ${{ env.SECRET_BOT_TOKEN != null && steps.status.outputs.status }} | ||
uses: ad-m/github-push-action@master | ||
with: | ||
github_token: ${{ secrets.HYPERION_BOT_TOKEN }} | ||
repository: hyperion-project/hyperion.ng | ||
branch: master | ||
env: | ||
SECRET_BOT_TOKEN: ${{ secrets.HYPERION_BOT_TOKEN }} | ||
|
||
################################## | ||
###### APT/DNF commit check ###### | ||
################################## | ||
|
||
check: | ||
name: 🔀 Compare Repository with current master | ||
needs: [update_submodule] | ||
runs-on: ubuntu-latest | ||
outputs: | ||
build-apt-nightly: ${{ steps.apt-build-necessary.outputs.commit-has-changed }} | ||
|