Bump golang.org/x/oauth2 from 0.16.0 to 0.27.0 #17
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: Message Slack for stale PRs | |
| on: | |
| pull_request_target: | |
| types: [labeled] | |
| jobs: | |
| build: | |
| if: contains(github.event.pull_request.labels.*.name, 'stage/in-review-stale') | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Send custom JSON data to Slack workflow | |
| id: slack | |
| uses: slackapi/slack-github-action@v1.23.0 | |
| with: | |
| payload: | | |
| { | |
| "pr_name": "${{ github.event.pull_request.title }}", | |
| "pr_link": "${{ github.event.pull_request.html_url }}" | |
| } | |
| env: | |
| SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL_STALE_PR }} |