Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/aw/actions-lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
"version": "v9",
"sha": "373c709c69115d41ff229c7e5df9f8788daa9553"
},
"github/gh-aw-actions/setup@v0.68.3": {
"github/gh-aw-actions/setup@v0.71.1": {
"repo": "github/gh-aw-actions/setup",
"version": "v0.68.3",
"sha": "ba90f2186d7ad780ec640f364005fa24e797b360"
"version": "v0.71.1",
"sha": "239aec45b78c8799417efdd5bc6d8cc036629ec1"
},
"github/gh-aw/actions/setup@v0.57.2": {
"repo": "github/gh-aw/actions/setup",
Expand Down
23 changes: 11 additions & 12 deletions .github/workflows/bump-tcgc-csharp.lock.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .github/workflows/bump-tcgc-csharp.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ description: |
exists, files a tracking issue assigned to GitHub Copilot to perform the upgrade.

on:
schedule: daily
schedule: "13 3 * * *"
workflow_dispatch:

permissions: read-all
Expand Down
28 changes: 28 additions & 0 deletions .github/workflows/check-agentic-workflows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Check Agentic Workflows

permissions:
contents: read

on:
pull_request:
paths:
- ".github/workflows/*.md"
- ".github/workflows/*.lock.yml"
- ".github/workflows/check-agentic-workflows.yml"

jobs:
check-lock-files:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Install gh-aw
run: curl -sL https://raw.githubusercontent.com/github/gh-aw/main/install-gh-aw.sh | bash

- name: Compile and check for drift
run: |
gh aw compile
if ! git diff --exit-code .github/workflows/*.lock.yml; then
echo "::error::Lock files are out of date. Run 'gh aw compile' locally and commit the changes."
exit 1
fi
Comment thread
github-advanced-security[bot] marked this conversation as resolved.
Fixed
Loading
Loading