Post Merge Validation #436
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: Post Merge Validation | |
| on: | |
| schedule: | |
| - cron: '0 7 * * *' | |
| workflow_dispatch: | |
| inputs: | |
| lookback-days: | |
| description: Number of days to look back for PRs | |
| required: false | |
| default: '1' | |
| jobs: | |
| post-merge-validation-tracker: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Run post-merge validation | |
| uses: MetaMask/github-tools/.github/actions/post-merge-validation@v1 | |
| with: | |
| repo: ${{ github.repository }} | |
| start-hour-utc: '7' | |
| lookback-days: ${{ inputs.lookback-days || '1' }} | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| google-application-creds-base64: ${{ secrets.GCP_RLS_SHEET_ACCOUNT_BASE64 }} |