File tree Expand file tree Collapse file tree 1 file changed +13
-3
lines changed
Expand file tree Collapse file tree 1 file changed +13
-3
lines changed Original file line number Diff line number Diff line change 44 build :
55 runs-on : ubuntu-latest
66 steps :
7+ - name : Import GPG key
8+ id : import-gpg
9+ uses : crazy-max/ghaction-import-gpg@v4
10+ with :
11+ gpg_private_key : ${{ secrets.GPG_PRIVATE_KEY }}
12+ passphrase : ${{ secrets.PASSPHRASE }}
13+ git_user_signingkey : true
14+ git_commit_gpgsign : true
15+ # TODO: Move this to the python script?
16+ - name : Sign commit and push changes
17+ run : |
18+ git config --global user.email "${{ steps.import-gpg.outputs.email }}"
19+ git config --global user.name "${{ steps.import-gpg.outputs.name }}"
720 - uses : actions/checkout@main
821 - name : Self test
922 id : selftest
10-
11- # Put your action repo here
1223 uses : Scientific-Python-Translations/content-sync@main
1324 env :
1425 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
1930 translations-repo : " Scientific-Python-Translations/pandas-translations"
2031 translations-folder : " pandas-translations/content/en/"
2132 translations-ref : " main"
22-
2333 - name : Check outputs
2434 run : |
2535 test "${{ steps.selftest.outputs.todo }}" == "Hello world"
You can’t perform that action at this time.
0 commit comments