Skip to content

Commit

Permalink
ci: fix update-libs CI (#288)
Browse files Browse the repository at this point in the history
  • Loading branch information
skatsaounis authored Oct 21, 2024
1 parent 493c44d commit ae42162
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/update-libs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,22 @@ jobs:
detect-open-prs:
name: Check open library updates PRs
needs: update-lib-region
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
outputs:
open_prs: ${{ steps.open-prs.outputs.open_prs }}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Check for any pre-existing PR and save it in the output
id: open-prs
run: |
OPEN_PRS="$(gh pr list --head chore/auto-libs --state open --json id --jq 'length')"
echo "open_prs=$OPEN_PRS" >> "$GITHUB_OUTPUT"
env:
GH_TOKEN: ${{ secrets.OBSERVABILITY_NOCTUA_TOKEN }}

update-lib-agent:
name: Check libraries
Expand Down

0 comments on commit ae42162

Please sign in to comment.