forked from guilhem/rss-issues-action
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #23 from dscho/npm-run-package-on-dependabot-prs
ci: automagically repackage when Dependabot updates a dependency
- Loading branch information
Showing
1 changed file
with
45 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,45 @@ | ||
name: 'npm run prepare' | ||
# Main use case: repackage when Dependabot updates a dependency | ||
on: | ||
push: | ||
branches: | ||
- 'dependabot/npm_and_yarn/**' | ||
workflow_dispatch: | ||
inputs: | ||
branch: | ||
description: 'Process this branch' | ||
required: false | ||
type: string | ||
|
||
jobs: | ||
npm-run-prepare-and-push: # make sure build/ci work properly | ||
runs-on: ubuntu-latest | ||
if: github.event_name == 'workflow_dispatch' || github.event.repository.owner.login == 'git-for-windows' | ||
environment: git-for-windows-ci-push | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
repository: ${{ github.event.repository.full_name }} | ||
ref: ${{ inputs.branch }}${{ github.event.ref }} | ||
token: ${{ secrets.GIT_FOR_WINDOWS_CI_PUSH }} | ||
- run: npm ci | ||
- run: npm run prepare | ||
- run: git diff-files | ||
- run: npm run lint | ||
- run: npm run test | ||
- name: check if commit & push is needed | ||
id: check | ||
run: | | ||
git add -u -- dist/ && | ||
git diff-index --cached --exit-code HEAD -- || | ||
echo "::set-output name=need-to-commit::yes" | ||
- name: commit & push | ||
if: steps.check.outputs.need-to-commit == 'yes' | ||
run: | | ||
git config user.name "${{github.actor}}" && | ||
git config user.email "${{github.actor}}@users.noreply.github.com" && | ||
git commit -m 'npm run prepare' -- dist/ && | ||
git update-index --refresh && | ||
git diff-files --exit-code && | ||
git diff-index --cached --exit-code HEAD -- && | ||
git push |