fix(badgetizr): [GH-16] Fix version + help + parameter #54
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: Run Badgetizr on Pull Requests | ||
on: | ||
pull_request: | ||
types: | ||
- opened | ||
- reopened | ||
- synchronize | ||
- edited | ||
- closed | ||
jobs: | ||
badgetizr: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout the repository | ||
uses: actions/checkout@v3 | ||
- name: Run Badgetizr | ||
uses: aiKrice/homebrew-badgetizr@ | ||
Check failure on line 21 in .github/workflows/badgetizr.yml GitHub Actions / Run Badgetizr on Pull RequestsInvalid workflow file
|
||
with: | ||
pr_id: ${{ github.event.pull_request.number }} | ||
configuration: .badgetizr.yml | ||
pr_destination_branch: ${{ github.event.pull_request.base.ref }} | ||
pr_build_number: ${{ github.run_id }} | ||
pr_build_url: "https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}" | ||
env: | ||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |