chore: use github app auth in make-release-pr #23
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
# Workflow evaluates the score on pub.dev. | |
# Runs on each push to main. | |
name: pubdev_score | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
scoring: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone repository. | |
uses: actions/checkout@v4 | |
with: | |
ref: main | |
- name: Evaluate Score | |
uses: axel-op/dart-package-analyzer@v3 | |
with: | |
githubToken: ${{ secrets.GITHUB_TOKEN }} |