chore: Switch change management action to shared custom action #5
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: 'Change Management' | |
# **What it does**: Adds a link to PRs with a newly created Asana task. | |
# **Why we have it**: To create a record of all code changes. | |
# **Who does it impact**: Everyone | |
on: | |
pull_request: | |
types: [opened, edited, closed, reopened] | |
jobs: | |
change-management: | |
runs-on: ubuntu-latest | |
if: ${{ github.actor != 'dependabot[bot]' }} | |
name: Change Management | |
steps: | |
- uses: nrfta/action-change-management@v1 | |
env: | |
ASANA_API_TOKEN: '${{ secrets.ASANA_API_TOKEN }}' | |
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}' |