Update priv/static/assets/js #276
Workflow file for this run
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
--- | |
name: Update priv/static/assets/js | |
"on": | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- "*" | |
workflow_dispatch: {} | |
merge_group: | |
concurrency: | |
group: ${{github.workflow}}-${{github.ref}} | |
cancel-in-progress: true | |
jobs: | |
branch: | |
outputs: | |
head_ref: ${{steps.branch.outputs.head_ref}} | |
runs-on: ubuntu-24.04 | |
steps: | |
- id: branch | |
run: | | |
head_ref=${GITHUB_HEAD_REF} | |
echo "head_ref is ${head_ref}" | |
echo "head_ref=${head_ref}" > "${GITHUB_OUTPUT}" | |
update: | |
name: Update priv/static/assets/js | |
needs: [branch] | |
if: endsWith(needs.branch.outputs.head_ref, 'package.json-+-.nvmrc-deps') | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/create-github-app-token@5d869da34e18e7287c1daad50e0b8ea0f506ce69 # v1.11.0 | |
id: app-token | |
with: | |
app-id: ${{vars.ARIZONA_BOT_APP_ID}} | |
private-key: ${{secrets.ARIZONA_BOT_PRIVATE_KEY}} | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
with: | |
token: ${{steps.app-token.outputs.token}} | |
ref: ${{needs.branch.outputs.head_ref}} | |
- uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4 | |
with: | |
node-version-file: .nvmrc | |
- run: | | |
npm run ci | |
if ! git diff --exit-code >/dev/null; then | |
# there's stuff to push | |
git config user.name "arizona[bot]" | |
git config user.email "[email protected]" | |
git add priv/static/assets/js/* | |
git commit -m "[automation] update \`priv/static/assets/js\` after Renovate" | |
git push | |
fi | |
env: | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} |