Sync secrets to other repos #4
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 secrets to other repos | |
| on: | |
| workflow_dispatch: | |
| jobs: | |
| sync: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Sync secrets | |
| uses: jpoehnelt/secrets-sync-action@v1.10.0 | |
| with: | |
| GITHUB_TOKEN: ${{ secrets.SYNC_TOKEN }} | |
| # regex matching secret names you want to sync | |
| SECRETS: | | |
| ^MAVEN_CENTRAL_ # will match MAVEN_CENTRAL_USERNAME & _PASSWORD | |
| ^PUBLIC_KEY$ | |
| ^SIGNING_KEY$ | |
| ^SIGNING_KEY_ID$ | |
| ^SIGNING_KEY_PASSWORD$ | |
| # repositories — either explicit names or regexes | |
| REPOSITORIES: | | |
| ^lemcoder/acra-github |