Skip to content

Commit

Permalink
Merge branch 'main' into fix-log-level-filtering
Browse files Browse the repository at this point in the history
  • Loading branch information
pietrodimarco-dfinity authored Nov 28, 2024
2 parents 3fcdaa1 + 20ac717 commit edad894
Show file tree
Hide file tree
Showing 47 changed files with 2,930 additions and 1,784 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
- name: "🚀 Building"
uses: ./.github/workflows/build
with:
GITHUB_TOKEN: "${{ secrets.GIX_CREATE_PR_PAT }}"
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
- name: "🚀 Testing"
env:
STAGING_PRIVATE_KEY_PEM: "${{ secrets.STAGING_PRIVATE_KEY_PEM }}"
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/pull-request-update.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,15 @@ jobs:
name: autoupdate
runs-on: ubuntu-22.04
steps:
- name: Create GitHub App Token
uses: actions/create-github-app-token@v1
id: app-token
with:
app-id: ${{ vars.PR_AUTOMATION_BOT_PUBLIC_APP_ID }}
private-key: ${{ secrets.PR_AUTOMATION_BOT_PUBLIC_PRIVATE_KEY }}
- uses: chinthakagodawita/[email protected]
env:
GITHUB_TOKEN: "${{ secrets.GIX_CREATE_PR_PAT }}"
GITHUB_TOKEN: "${{ steps.app-token.outputs.token }}"
MERGE_MSG: "Branch was auto-updated."
RETRY_COUNT: "5"
RETRY_SLEEP: "1000"
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/update-dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ jobs:
runs-on: ubuntu-20.04
container: ghcr.io/dfinity/dre/actions-runner:3dd4f38f076cad73fdcc68ad37fd29bed4fa3e4d
steps:
- name: Create GitHub App Token
uses: actions/create-github-app-token@v1
id: app-token
with:
app-id: ${{ vars.PR_AUTOMATION_BOT_PUBLIC_APP_ID }}
private-key: ${{ secrets.PR_AUTOMATION_BOT_PUBLIC_PRIVATE_KEY }}
- uses: actions/checkout@v4
- name: "🔧 Setup runner"
uses: ./.github/workflows/manage-runner-pre
Expand Down Expand Up @@ -56,7 +62,7 @@ jobs:
branch: bot-update-deps
title: "chore: Update dependencies"
body: "This PR updates Python, Rust crates, and IC repository dependencies"
token: ${{ secrets.GIX_CREATE_PR_PAT }}
token: ${{ steps.app-token.outputs.token }}

- name: "🪓 Tear down runner"
uses: ./.github/workflows/manage-runner-post
1 change: 1 addition & 0 deletions BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ exports_files([
"archive_canister.wasm.gz",
"clippy.toml",
"rustfmt.toml",
"cordoned_features.yaml",
"WORKSPACE.bazel",
])

Expand Down
Loading

0 comments on commit edad894

Please sign in to comment.