Skip to content

Commit

Permalink
Add workflow to check for steam app updates
Browse files Browse the repository at this point in the history
  • Loading branch information
scottbot95 committed Dec 10, 2023
1 parent 94e67e1 commit bb34d93
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 1 deletion.
54 changes: 54 additions & 0 deletions .github/workflows/update-packages.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
name: "Update Package Locks"
permissions:
contents: write
pull-requests: write
on:
workflow_dispatch:
schedule:
- cron: "0 10 * * 0" # https://crontab.guru/#0_10_*_*_0
jobs:
update_packages:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install Nix
uses: cachix/install-nix-action@v20
- name: Update package locks
run: |
nix develop -c update-servers
CHANGES=$(git status --porcelain)
echo "changes=${CHANGES}" >> $GITHUB_OUTPUT
create_pull_request:
runs-on: ubuntu-latest
needs: update_packages
if: ${{ needs.update_packages.outputs.changes != ''}}
steps:
- name: Create commit
run: |
git config --global user.email "[email protected]"
git config --global user.name "GitHub Actions"
git switch -c update_package_lock_action
git add .
git commit -m "chore: Update package locks"
git push origin update_package_lock_action --force
- name: Create Pull Request
run: |
gh pr create \
-B master \
-H update_package_lock_action \
--title 'chore: update package' \
--body '
Update branches to latest builds and import new builds.
### Tasks for reviewer:
- [ ] Ensure all automated tests still pass
- [ ] Update `version` field of newly imported builds with version number used in-game
Created by Github action'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

2 changes: 1 addition & 1 deletion flake-shell.nix
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
nix-update
mdbook
deno
# steamcmd
steamcmd
];
commands = [
{
Expand Down

0 comments on commit bb34d93

Please sign in to comment.