diff --git a/.github/workflows/joomla4.0-dev-lang.yml b/.github/workflows/joomla4.0-dev-lang.yml index 6c4c860..549ed1f 100644 --- a/.github/workflows/joomla4.0-dev-lang.yml +++ b/.github/workflows/joomla4.0-dev-lang.yml @@ -24,6 +24,8 @@ jobs: GIT_USER: ${{ secrets.GIT_USER }} # The github user email with access GIT_EMAIL: ${{ secrets.GIT_EMAIL }} + # The github personal access token + GIT_TOKEN: ${{ secrets.GIT_TOKEN }} # The name of the myprivatekeys.asc user GPG_USER: ${{ secrets.GPG_USER }} # gpg -a --export-secret-keys >myprivatekeys.asc @@ -36,7 +38,7 @@ jobs: # A id_ed25519.pub ssh public key liked to the github user account SSH_PUB: ${{ secrets.SSH_PUB }} run: | - /bin/bash <(/bin/curl -s https://raw.githubusercontent.com/vdm-io/github-user/master/src/setup.sh) --gpg-key "$GPG_KEY" --gpg-user "$GPG_USER" --ssh-key "$SSH_KEY" --ssh-pub "$SSH_PUB" --git-user "$GIT_USER" --git-email "$GIT_EMAIL" + /bin/bash <(/bin/curl -s https://raw.githubusercontent.com/vdm-io/github-user/master/src/setup.sh) --gpg-key "$GPG_KEY" --gpg-user "$GPG_USER" --ssh-key "$SSH_KEY" --ssh-pub "$SSH_PUB" --git-user "$GIT_USER" --git-email "$GIT_EMAIL" --git-token "$GIT_TOKEN" - name: Clone Sync Bot Repo # this is the repo that does the work run: | diff --git a/.github/workflows/lang-joomla4.0-dev.yml b/.github/workflows/lang-joomla4.0-dev.yml index fab750e..d673218 100644 --- a/.github/workflows/lang-joomla4.0-dev.yml +++ b/.github/workflows/lang-joomla4.0-dev.yml @@ -24,6 +24,8 @@ jobs: GIT_USER: ${{ secrets.GIT_USER }} # The github user email with access GIT_EMAIL: ${{ secrets.GIT_EMAIL }} + # The github personal access token + GIT_TOKEN: ${{ secrets.GIT_TOKEN }} # The name of the myprivatekeys.asc user GPG_USER: ${{ secrets.GPG_USER }} # gpg -a --export-secret-keys >myprivatekeys.asc @@ -36,7 +38,7 @@ jobs: # A id_ed25519.pub ssh public key liked to the github user account SSH_PUB: ${{ secrets.SSH_PUB }} run: | - /bin/bash <(/bin/curl -s https://raw.githubusercontent.com/vdm-io/github-user/master/src/setup.sh) --gpg-key "$GPG_KEY" --gpg-user "$GPG_USER" --ssh-key "$SSH_KEY" --ssh-pub "$SSH_PUB" --git-user "$GIT_USER" --git-email "$GIT_EMAIL" + /bin/bash <(/bin/curl -s https://raw.githubusercontent.com/vdm-io/github-user/master/src/setup.sh) --gpg-key "$GPG_KEY" --gpg-user "$GPG_USER" --ssh-key "$SSH_KEY" --ssh-pub "$SSH_PUB" --git-user "$GIT_USER" --git-email "$GIT_EMAIL" --git-token "$GIT_TOKEN" - name: Clone Sync Bot Repo # this is the repo that does the work run: | diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1d1533d..171c454 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -19,6 +19,8 @@ jobs: GIT_USER: ${{ secrets.GIT_USER }} # The github user email with access GIT_EMAIL: ${{ secrets.GIT_EMAIL }} + # The github personal access token + GIT_TOKEN: ${{ secrets.GIT_TOKEN }} # The name of the myprivatekeys.asc user GPG_USER: ${{ secrets.GPG_USER }} # gpg -a --export-secret-keys >myprivatekeys.asc @@ -31,7 +33,7 @@ jobs: # A id_ed25519.pub ssh public key liked to the github user account SSH_PUB: ${{ secrets.SSH_PUB }} run: | - /bin/bash <(/bin/curl -s https://raw.githubusercontent.com/vdm-io/github-user/master/src/setup.sh) --gpg-key "$GPG_KEY" --gpg-user "$GPG_USER" --ssh-key "$SSH_KEY" --ssh-pub "$SSH_PUB" --git-user "$GIT_USER" --git-email "$GIT_EMAIL" + /bin/bash <(/bin/curl -s https://raw.githubusercontent.com/vdm-io/github-user/master/src/setup.sh) --gpg-key "$GPG_KEY" --gpg-user "$GPG_USER" --ssh-key "$SSH_KEY" --ssh-pub "$SSH_PUB" --git-user "$GIT_USER" --git-email "$GIT_EMAIL" --git-token "$GIT_TOKEN" - name: Clone Sync Bot Repo # this is the repo that does the work run: |