We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9ddee35 + 34be19a commit 5942fe3Copy full SHA for 5942fe3
.github/workflows/gen.yml
@@ -39,14 +39,22 @@ jobs:
39
run: |
40
git diff --quiet || echo "COMMIT_CHANGES=1" >> $GITHUB_ENV
41
42
+ - name: Bless public API changes
43
+ if: env.COMMIT_CHANGES == 1
44
+ run: |
45
+ cargo xtask public-api --bless
46
+
47
- name: Commit Changes
48
id: commit
49
if: env.COMMIT_CHANGES == 1
50
uses: devops-infra/action-commit-push@master
51
with:
52
github_token: "${{ secrets.CRABBY_GITHUB_TOKEN }}"
- commit_prefix: "[codegen] Update libbpf to ${{ env.LIBBPF_SHA }}"
- commit_message: "Update libbpf to ${{ env.LIBBPF_SHA }}"
53
+ commit_message: |
54
+ chore(aya-obj, aya-ebpf-bindings): Regenerate bindings
55
56
+ libbpf commit: ${{ env.LIBBPF_SHA }}
57
58
target_branch: codegen
59
force: true
60
0 commit comments