Skip to content

Merge pull request #12 from underdog-tech/feat/update-vulnbot-v1.0.0 #10

Merge pull request #12 from underdog-tech/feat/update-vulnbot-v1.0.0

Merge pull request #12 from underdog-tech/feat/update-vulnbot-v1.0.0 #10

Workflow file for this run

name: VulnBot Action
on:
push:
branches: ["main"]
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Create .env file
run: |
echo "SLACK_AUTH_TOKEN=${{ secrets.SLACK_AUTH_TOKEN }}" > .env
echo "GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }}" >> .env
echo "GITHUB_ORG=${{ secrets.GITHUB_ORG }}" >> .env
- name: Send report
uses: ./ # Using the action defined in the same repository.
with:
config: "tests/config.toml"