Skip to content

Commit

Permalink
🐛 Use ssh key instead of GH token
Browse files Browse the repository at this point in the history
When the PR is created with a GH token, the tests aren't executed.
This is becasue of limitation applied to the token.

These limiations do not apply to ssh keys.

Signed-off-by: Christian Zunker <[email protected]>
  • Loading branch information
czunker committed Dec 21, 2023
1 parent 7f51199 commit f2e2279
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 9 deletions.
6 changes: 0 additions & 6 deletions .github/workflows/pr-test-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,12 +65,6 @@ jobs:
- name: Import environment variables from file
run: cat ".github/env" >> $GITHUB_ENV

- name: Debug event
env:
GITHUB_CONTEXT: ${{ toJson(github) }}
run: |
echo "$GITHUB_CONTEXT" | jq
- name: Install Go
uses: actions/setup-go@v5
with:
Expand Down
20 changes: 17 additions & 3 deletions .github/workflows/update-deps.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
ssh-key: ${{ secrets.CNQUERY_DEPLOY_KEY_PRIV }}

- name: Import environment variables from file
run: cat ".github/env" >> $GITHUB_ENV
Expand Down Expand Up @@ -47,13 +49,25 @@ jobs:
git add providers/ || true
COMMIT_MSG="🧹 Update deps for cnquery and providers $(date +%Y%m%d)"
echo "COMMIT_TITLE=${COMMIT_MSG}" >> $GITHUB_OUTPUT
echo "BRANCH_NAME=${BRANCH_NAME}" >> $GITHUB_OUTPUT
git commit -m "${COMMIT_MSG}"
git push --set-upstream origin ${BRANCH_NAME}
shell: bash

- name: Create pull request
id: cpr
if: ${{ steps.update-deps.outputs.COUNT_GOMOD != '0' }}
uses: peter-evans/create-pull-request@v5
with:
draft: true
# base: main
labels: dependencies,go
title: ${{ steps.branch.outputs.COMMIT_TITLE }}
branch: ${{ steps.branch.outputs.BRANCH_NAME }}
body-path: .github/pr-body.md

- name: PR infos
if: ${{ steps.cpr.outputs.pull-request-number }}
run: |
gh pr create --base main --label dependencies --label go --title "${{ steps.branch.outputs.COMMIT_TITLE }}" --body-file .github/pr-body.md
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
echo "Pull Request Number - ${{ steps.cpr.outputs.pull-request-number }}"
echo "Pull Request URL - ${{ steps.cpr.outputs.pull-request-url }}"

0 comments on commit f2e2279

Please sign in to comment.