We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent58b810f commitb7102b3Copy full SHA for b7102b3
.github/workflows/ci.yaml
@@ -121,6 +121,9 @@ jobs:
121
needs:changes
122
if:needs.changes.outputs.gomod == 'true'
123
runs-on:${{ github.repository_owner == 'coder' && 'depot-ubuntu-22.04-8' || 'ubuntu-latest' }}
124
+permissions:
125
+# Give the default GITHUB_TOKEN write permission to commit and push the changed files back to the repository.
126
+contents:write
127
steps:
128
-name:Checkout
129
uses:actions/checkout@v4
@@ -133,8 +136,10 @@ jobs:
133
136
-name:Update Nix Flake SRI Hash
134
137
run:./scripts/update-flake.sh
135
138
- -name:Ensure No Changes
-run:git diff --exit-code
139
+ -uses:stefanzweifel/git-auto-commit-action@v5
140
+with:
141
+# Allows dependabot to still rebase!
142
+commit_message:"[dependabot skip] Update Nix Flake SRI Hash"
143
144
lint:
145