-
Notifications
You must be signed in to change notification settings - Fork 6
54 lines (52 loc) · 1.8 KB
/
sync.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
name: S3-synchronization-cronjob
on:
schedule:
- cron: '0 8 * * *' # Everyday at 8am
jobs:
sync:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: master
token: ${{ secrets.GH_TOKEN }}
- name: Generate random number
id: random
run: echo "::set-output name=value::$(echo $RANDOM)"
- name: Get current date
id: date
run: echo "::set-output name=date::$(date +'%Y-%m-%d')"
- name: Create branch
uses: peterjgrainger/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
with:
branch: sync-${{ steps.random.outputs.value }}
- uses: actions/checkout@v4
with:
ref: sync-${{ steps.random.outputs.value }}
token: ${{ secrets.GH_TOKEN }}
- name: create env file
run: |
touch .env
echo AWS_STARPORT_BAR_AK=${{ secrets.AWS_STARPORT_BAR_AK }} >> .env
echo AWS_STARPORT_BAR_SAK=${{ secrets.AWS_STARPORT_BAR_SAK }} >> .env
echo REPOSITORY_ID=${{ secrets.REPOSITORY_ID }} >> .env
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '18.x'
- run: npm install
- run: npm run sync-script
- name: commit and push new file
run: |
git config --global user.name "S3 Synchronization Cronjob"
git config --global user.email "<>"
git add .
git commit --allow-empty -m "Cronjob/Sync docs folder with s3"
git push
- name: create pull request
run: |
gh pr create -B master -H sync-${{ steps.random.outputs.value }} --title 'Cronjob/Sync docs folder with s3' --body 'Created by Github action'
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}