Adding disable/enable functionality to cluster repos #51
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: Validate Pull Request Description | |
on: | |
pull_request: | |
types: [opened, edited, synchronize] | |
jobs: | |
validate-description: | |
name: Validate Description | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Validate checklist has been completed | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
PR_URL: ${{ github.event.pull_request.url }} | |
run: ./.github/workflows/scripts/pr-check-checklist.sh |