-
Notifications
You must be signed in to change notification settings - Fork 1
30 lines (28 loc) · 943 Bytes
/
rerun.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# Run every third day starting from the 3rd of the month 1 am pacific
name: Re-Run Unverified PRs
on:
workflow_dispatch:
schedule:
- cron: '0 8 3-31/3 * *'
jobs:
send_pull_requests:
runs-on: ubuntu-latest
name: Re-Execute any Autotest PR checks
steps:
- uses: getsentry/action-github-app-token@v2
name: Get GH App token
id: podaac-cicd
with:
app_id: ${{ secrets.CICD_APP_ID }}
private_key: ${{ secrets.CICD_APP_PRIVATE_KEY }}
- uses: actions/checkout@v4
with:
token: ${{ steps.podaac-cicd.outputs.token }}
- name: Empty Commits
env:
GH_TOKEN: ${{ steps.podaac-cicd.outputs.token }}
run: |
cd .github/workflows
git config --global user.email ${{ github.actor }}@users.noreply.github.com
git config --global user.name "${{ github.actor }}"
sh rerun_checks.sh autotest