chore: update label to attach to all prs to: automated-dependency-updates
#16
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: Validate Changes to Workflow | ||
"on": | ||
pull_request: {} | ||
permissions: {} | ||
jobs: | ||
validate_changes: | ||
name: validate action changes | ||
runs-on: ubuntu-latest | ||
permissions: | ||
# required to read from the repo | ||
contents: read | ||
# required to read from the PR | ||
pull-requests: read | ||
steps: | ||
- name: checkout | ||
uses: actions/checkout@v4 | ||
- name: updatecli-minor-apply | ||
uses: prefecthq/actions-updatecli-apply@${{ github.head_ref }} | ||
Check failure on line 23 in .github/workflows/validate-changes.yaml GitHub Actions / Validate Changes to WorkflowInvalid workflow file
|
||
with: | ||
manifest-path: .github/updatecli/manifest.yaml | ||
run-type: minor |