We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b5c7e53 commit a8b02d2Copy full SHA for a8b02d2
1 file changed
.github/workflows/publish-to-website.yml
@@ -22,11 +22,16 @@ jobs:
22
uses: actions/checkout@v2
23
with:
24
path: ./InnerSourceLearningPath
25
+ ssh-key: ${{ secrets.LEARNING_PATH_DEPLOY_KEY }}
26
- name: Update Learning Path links in translations
27
working-directory: InnerSourceLearningPath/scripts
28
run: |
29
npm ci
30
node update_links_in_translations.js
31
+ git config --local user.name "github-actions[bot]"
32
+ git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
33
+ git commit -am "Update Links in Translations"
34
+ git push
35
- name: Checkout innersourcecommons.org
36
37
0 commit comments