Change tokens and tree struct to support loops and conditionals #218
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 rebar.lock | |
"on": | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- "*" | |
workflow_dispatch: {} | |
merge_group: | |
concurrency: | |
group: ${{github.workflow}}-${{github.ref}} | |
cancel-in-progress: true | |
jobs: | |
update: | |
name: Update rebar.lock | |
if: endsWith(github.ref, 'rebar.config-deps') | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- uses: erlef/setup-beam@a6e26b22319003294c58386b6f25edbc7336819a # v1.18.0 | |
with: | |
version-type: strict | |
version-file: .tool-versions | |
- run: | | |
rebar3 upgrade --all | |
if ! git diff --exit-code >/dev/null; then | |
# there's stuff to push | |
git config user.name "GitHub Actions" | |
git config user.email "[email protected]" | |
git add rebar.lock | |
git commit -m "[automation] update \`rebar.lock\` after Renovate" | |
git push | |
fi | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |