-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: automatically update npm dependencies hash in dependabot PRs (#100)
- Loading branch information
Showing
2 changed files
with
60 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
# Due to the Nix configuration we need to update a hash in test/test.nix when | ||
# npm dependencies change. This workflow runs on dependabot branches, and runs | ||
# a script that makes the necessary update after each dependabot push. | ||
name: Dependabot-post | ||
|
||
on: | ||
push: | ||
branches: | ||
- "dependabot/npm_and_yarn/*" | ||
|
||
jobs: | ||
update_npm_deps_hash: | ||
name: Update NPM dependencies hash | ||
runs-on: ubuntu-latest | ||
if: github.actor == 'dependabot[bot]' || github.actor == 'dependabot-preview[bot]' | ||
permissions: | ||
contents: write | ||
steps: | ||
- name: Check Out Code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Install Nix | ||
uses: DeterminateSystems/nix-installer-action@main | ||
|
||
- name: Configure Cache | ||
uses: DeterminateSystems/magic-nix-cache-action@main | ||
|
||
- name: Update Hash | ||
run: nix run .#update-npm-deps-hash | ||
|
||
- name: Set up Git Config | ||
run: | | ||
git config user.name "${GITHUB_ACTOR}" | ||
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com" | ||
# NOTE: Prefixing/appending commit messages with `[dependabot skip]` | ||
# allows dependabot to rebase/update the pull request, force-pushing | ||
# over any changes | ||
- name: Commit changes | ||
run: | | ||
git add . | ||
if [[ $(git status -s) ]]; then | ||
git commit -m "build(deps): update npm dependencies hash [dependabot skip]" --no-verify | ||
git push | ||
echo "Pushed an update to npm dependencies hash" | ||
else | ||
echo "Npm dependencies hash was not changed" | ||
fi |
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