From dde27db08aa4e78d12e89ef66f117b71b129b4b7 Mon Sep 17 00:00:00 2001 From: Elliot Murphy Date: Wed, 8 Dec 2021 14:08:09 -0500 Subject: [PATCH] adjust autovendor for renovate (#209) * adjust for dependabot * enhance draft release notes * remove duplicated semgrep --- .github/release-drafter.yml | 6 ++++++ .github/workflows/ci.yaml | 2 +- .github/workflows/semgrep-analysis.yml | 1 - .github/workflows/semgrep.yml | 16 ---------------- 4 files changed, 7 insertions(+), 18 deletions(-) delete mode 100644 .github/workflows/semgrep.yml diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml index e3b81721..4244641c 100644 --- a/.github/release-drafter.yml +++ b/.github/release-drafter.yml @@ -18,3 +18,9 @@ template: | ## Changes $CHANGES + + **Full Changelog**: https://github.com/kindlyops/deleterious/compare/$PREVIOUS_TAG...$RESOLVED_VERSION + + ## Contributors + + $CONTRIBUTORS diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 339061ef..9def4016 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -26,7 +26,7 @@ jobs: run: bazel run :install - name: Sync Dependencies run: bazel run //:vendor - if: github.actor == 'dependabot-preview[bot]' + if: (github.actor == 'dependabot-preview[bot]') || (github.actor == 'renovate[bot]') - name: Test run: bazel test //... - name: autocommit diff --git a/.github/workflows/semgrep-analysis.yml b/.github/workflows/semgrep-analysis.yml index 7bda926b..40f4f60e 100644 --- a/.github/workflows/semgrep-analysis.yml +++ b/.github/workflows/semgrep-analysis.yml @@ -31,7 +31,6 @@ jobs: - uses: returntocorp/semgrep-action@fcd5ab7459e8d91cb1777481980d1b18b4fc6735 with: publishToken: ${{ secrets.SEMGREP_APP_TOKEN }} - publishDeployment: ${{ secrets.SEMGREP_DEPLOYMENT_ID }} generateSarif: "1" # Upload SARIF file generated in previous step diff --git a/.github/workflows/semgrep.yml b/.github/workflows/semgrep.yml deleted file mode 100644 index ca54ccb9..00000000 --- a/.github/workflows/semgrep.yml +++ /dev/null @@ -1,16 +0,0 @@ -on: - pull_request: {} - push: - branches: - - main - - master -name: Semgrep -jobs: - semgrep: - name: Scan - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: returntocorp/semgrep-action@v1 - with: - publishToken: ${{ secrets.SEMGREP_APP_TOKEN }}