Hotfix/validators statuses filter (#1528) #56
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: Auto PR - Pre-Stage to Stage | |
| on: | |
| push: | |
| branches: | |
| - pre-stage | |
| jobs: | |
| create_pr: | |
| name: Create PR from Pre-Stage to Stage | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: 20.12.2 | |
| - name: Run PR automation | |
| run: node scripts/pr-automation/index.cjs | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN || github.token }} | |
| GITHUB_REPOSITORY: ${{ github.repository }} |