-
Notifications
You must be signed in to change notification settings - Fork 454
39 lines (34 loc) · 1.16 KB
/
refresh_updated_at.yaml
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
31
32
33
34
35
36
37
38
39
name: Refresh updated at
on:
pull_request:
types:
- closed
branches:
- master
jobs:
refresh_updated_at:
if: github.event.pull_request.merged == true
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
token: '${{ secrets.PERSONAL_ACCESS_TOKEN }}'
ref: 'master'
- uses: actions/setup-python@v4
with:
python-version: '3.9'
token: '${{ secrets.PERSONAL_ACCESS_TOKEN }}'
- run: "pip install papermill requests pandas ipykernel"
- name: Get required variables And run script
env:
issue_number: ${{ github.event.pull_request.number }}
GITHUB_TOKEN: '${{ secrets.PERSONAL_ACCESS_TOKEN }}'
run: |
papermill -p pull_number $issue_number Naas_Update_dates_on_PR_merged.ipynb ./Naas_Update_dates_on_PR_merged.out.ipynb
rm ./Naas_Update_dates_on_PR_merged.out.ipynb
- name: Commit and push
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git commit -m 'UpdatedAt: Refresh' -a
git push