S3-synchronization-cronjob #194
Workflow file for this run
This file contains 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: S3-synchronization-cronjob | |
on: | |
schedule: | |
- cron: '0 8 * * *' # Run every 8am | |
env: | |
SYNC_BRANCH_NAME: 's3-sync-branch-91rf9321' | |
jobs: | |
sync: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: master | |
token: ${{ secrets.GH_TOKEN }} | |
- name: Get current date | |
id: date | |
run: echo "::set-output name=date::$(date +'%Y-%m-%d')" | |
- name: Delete old sync branch if it exists | |
run: | | |
git push -d origin ${{ env.SYNC_BRANCH_NAME }} &>/dev/null || true | |
- name: Create sync branch | |
uses: peterjgrainger/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | |
with: | |
branch: ${{ env.SYNC_BRANCH_NAME }} | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ env.SYNC_BRANCH_NAME }} | |
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 ${{ env.SYNC_BRANCH_NAME }} --title 'Cronjob/Sync docs folder with s3' --body 'Created by Github action' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} |