From 3516501bf8263b6e3200a65ad0045e5f3961faaf Mon Sep 17 00:00:00 2001 From: Wojciech Knapik Date: Thu, 28 Sep 2023 19:06:46 +0200 Subject: [PATCH] Copied assets/org.yml to .github to enable fixing the required workflow failures --- .github/org.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/org.yml diff --git a/.github/org.yml b/.github/org.yml new file mode 100644 index 00000000..57103142 --- /dev/null +++ b/.github/org.yml @@ -0,0 +1,26 @@ +name: security +on: + workflow_dispatch: + push: + branches: [main, master, staging, development, devel, dev, prod] + pull_request: + types: [opened, synchronize, reopened, ready_for_review] + branches: [main, master, staging, development, devel, dev] + merge_group: +permissions: + contents: read + pull-requests: write +jobs: + security: + name: security + runs-on: ubuntu-latest + strategy: + fail-fast: false + steps: + - uses: actions/checkout@v4 + with: + fetch-depth: 0 + - uses: brave/security-action@main + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + slack_token: ${{ secrets.HOTSPOTS_SLACK_TOKEN }}