fix: Ensure name_filter are local scoped #546
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: Configlet Generate | |
on: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
configlet-generate: | |
runs-on: ubuntu-24.04 | |
permissions: | |
contents: write | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 | |
- name: Fetch configlet | |
uses: exercism/github-actions/configlet-ci@main | |
# GITHUB_TOKEN is not set when we run the fetch script, because we're in | |
# a composite action. Set GH_TOKEN so that `gh release download` can | |
# make authenticated requests (it fails otherwise). | |
env: | |
GH_TOKEN: ${{ github.token }} | |
- name: Generete templated docs | |
run: configlet generate --update --yes | |
- name: Commit generated code | |
uses: stefanzweifel/git-auto-commit-action@8621497c8c39c72f3e2a999a26b4ca1b5058a842 |