You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?
GitHub Action
github2dropbox
v0.1.0
Backup GitHub Data to DropBox
2. Get the access token from DropBox
- 2.1 Create a new app
- 2.2 Add permission
- files.metadata.write
- files.content.write
- and then submit the change.
- 2.3 Set Access token expiration to No-Expiration
- 2.4 Click Generate Access Token
- and copy the access token.
3. Generate the access token from Personal Access Token
- 3.1 Expiration: No-Expiration
- 3.2 Choose ALL Permissions
add file: .github/workflows/github-backup.yml
to your project
name: github-backup
on:
push:
branches: [ master ] # trigger on pushes to master
pull_request: # trigger on pull requests
jobs:
run:
runs-on: ubuntu-latest
timeout-minutes: 60 # timeout after 60 minutes
steps:
- name: Backup
uses: chyroc/github2dropbox@a423fe2
with:
DROPBOX_TOKEN: ${{ secrets.DROPBOX_TOKEN }} # dropbox token
GITHUB_TOKEN: ${{ secrets.G_TOKEN }} # github token
- 2022-02-24 v0.1.0
- Initial release