Refactor: test name clean-up and assertions for in-person analytics #1096
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: "Project triage: Dependabot" | |
on: | |
pull_request: | |
types: [opened] | |
jobs: | |
add-to-project-dependabot: | |
runs-on: ubuntu-latest | |
# see https://docs.github.com/en/code-security/dependabot/working-with-dependabot/automating-dependabot-with-github-actions#responding-to-events | |
if: github.actor == 'dependabot[bot]' || github.actor == 'pre-commit-ci[bot]' | |
steps: | |
- uses: actions/add-to-project@main | |
with: | |
project-url: https://github.com/orgs/cal-itp/projects/${{ secrets.GH_PROJECT }} | |
github-token: ${{ secrets.GH_PROJECTS_TOKEN }} | |
- uses: EndBug/project-fields@v2 | |
with: | |
operation: set | |
fields: Effort,Status | |
values: 1,In review | |
project_url: https://github.com/orgs/cal-itp/projects/${{ secrets.GH_PROJECT }} | |
github_token: ${{ secrets.GH_PROJECTS_TOKEN }} |