We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2771497 + a283e37 commit 6161bcaCopy full SHA for 6161bca
2 files changed
.github/workflows/smoketest.yaml
@@ -20,6 +20,7 @@ jobs:
20
if: github.event.issue.pull_request # Make sure the comment is on a PR
21
outputs:
22
allowed: ${{ steps.branch-deploy.outputs.continue }}
23
+ sha: ${{ steps.branch-deploy.outputs.sha }}
24
steps:
25
- name: branch-deploy
26
id: branch-deploy
@@ -48,9 +49,11 @@ jobs:
48
49
- name: Checkout the PR
50
env:
51
PR_NUMBER: ${{ github.event.issue.number }}
52
+ REF: ${{ needs.permission-check.outputs.sha }}
53
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
54
run: |
55
gh pr checkout $PR_NUMBER
56
+ git checkout $REF
57
58
- name: Setup Python venv
59
README.md
@@ -1,4 +1,4 @@
1
-# SecLab Taskflow Agent
+# GitHub Security Lab Taskflow Agent
2
3
The Security Lab Taskflow Agent is an MCP enabled multi-Agent framework.
4
0 commit comments