⬆️ Bump discord-api-types from 0.38.43 to 0.38.44 (#119) #335
This file contains hidden or 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: Sync to Codeberg | |
| concurrency: | |
| group: ${{ github.ref }} | |
| cancel-in-progress: true | |
| on: | |
| push: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: '0 */6 * * *' | |
| permissions: | |
| contents: write | |
| jobs: | |
| codeberg: | |
| if: github.repository == 'notthebestdev/someoneback' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Add Codeberg to known_hosts | |
| run: | | |
| mkdir -p ~/.ssh | |
| ssh-keyscan codeberg.org >> ~/.ssh/known_hosts | |
| - uses: pixta-dev/repository-mirroring-action@v1 | |
| with: | |
| target_repo_url: git@codeberg.org:justinn/someoneback.git | |
| ssh_private_key: ${{ secrets.CODEBERG_SSH_PRIVATE_KEY }} |