Bump node-forge from 1.3.1 to 1.3.2 #430
Workflow file for this run
This file contains hidden or 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: Create Asana task for Privacy Review | |
| on: | |
| pull_request: | |
| types: [ labeled ] | |
| jobs: | |
| call-privacy-review: | |
| if: contains(github.event.label.name, 'privacy review') | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout native actions repo | |
| uses: actions/checkout@v4 | |
| with: | |
| ref: v2.1 | |
| # Do not change the below path (downstream actions expect it) | |
| path: native-github-asana-sync | |
| repository: duckduckgo/native-github-asana-sync | |
| - name: Trigger review task | |
| uses: ./native-github-asana-sync/.github/actions/privacy-review/ | |
| with: | |
| team_name: 'Extension' | |
| asana_pat: ${{ secrets.ASANA_ACCESS_TOKEN }} | |
| github_pat: ${{ secrets.DAXMOBILE_TOKEN }} |