Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add backup to s3 #13026

Merged
merged 1 commit into from
Mar 21, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 39 additions & 0 deletions .github/workflows/git-backup.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Backup Rasa repo to S3
on:
schedule:
# Run cron job at 7AM Monday to Sunday.
- cron: "0 7 * * *"
workflow_dispatch:

permissions:
id-token: write
contents: read

jobs:
backup:
runs-on: ubuntu-22.04
steps:
- name: Checkout repository
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c
with:
fetch-depth: 0

- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@8c3f20df09ac63af7b3ae3d7c91f105f857d8497 #v3.0.1
with:
role-to-assume: ${{ secrets.GIT_BACKUP_ROLE_ARN }}
aws-region: ${{ secrets.GIT_BACKUP_REGION }}

# Determine the date in the right format for us to tag the image.
- name: Get current date
id: date
run: echo "date=$(date +'%Y%m%d')" >> $GITHUB_OUTPUT

- name: Create Git bundle
run: git bundle create --progress rasa-${{ steps.date.outputs.date }}.bundle --all

- name: Verify Git bundle
run: git bundle verify rasa-${{ steps.date.outputs.date }}.bundle

- name: Upload bundle to S3
run: aws s3 cp rasa-${{ steps.date.outputs.date }}.bundle s3://${{ secrets.GIT_BACKUP_BUCKET }}/rasa/
Loading