Skip to content

Commit 0307b66

Browse files
Merge branch 'main' into release-upload
2 parents ca0f0d6 + 374f65b commit 0307b66

File tree

2 files changed

+16
-3
lines changed

2 files changed

+16
-3
lines changed

.github/workflows/smoketest.yaml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ permissions:
1616
jobs:
1717
Linux:
1818
runs-on: ubuntu-latest
19+
if: github.event.issue.pull_request # Make sure the comment is on a PR
1920
steps:
2021
- name: branch-deploy
2122
id: branch-deploy
@@ -31,10 +32,15 @@ jobs:
3132
with:
3233
python-version: '3.11'
3334

34-
- name: Checkout
35+
- name: Checkout the repo
3536
uses: actions/checkout@v5
36-
with:
37-
ref: ${{ github.head_ref }}
37+
38+
- name: Checkout the PR
39+
env:
40+
PR_NUMBER: ${{ github.event.issue.number }}
41+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
42+
run: |
43+
gh pr checkout $PR_NUMBER
3844
3945
- name: Setup Python venv
4046
run: |

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -498,6 +498,13 @@ The implementation works like this:
498498

499499
The exact code that implements this can be found in [`available_tools.py`](src/seclab_taskflow_agent/available_tools.py).
500500

501+
## Background
502+
503+
SecLab Taskflow Agent is an experimental agentic framework, maintained by [GitHub Security Lab](https://securitylab.github.com/). We are using it to experiment with using AI Agents for security purposes, such as auditing code for vulnerabilities, or triaging issues.
504+
505+
We'd love to hear your feedback. Please [create an issue](https://github.com/GitHubSecurityLab/seclab-taskflow-agent/issues/new/choose) to send us a feature request or bug report. We also welcome pull requests (see our [contribution guidelines](./CONTRIBUTING.md) for more information if you wish to contribute).
506+
507+
501508
## License
502509

503510
This project is licensed under the terms of the [MIT](https://spdx.org/licenses/MIT.html) license. Please refer to the [LICENSE](./LICENSE) file for the full terms.

0 commit comments

Comments
 (0)