diff --git a/.github/workflows/check-security-alerts.yml b/.github/workflows/check-security-alerts.yml index a699fbf..e4928b8 100644 --- a/.github/workflows/check-security-alerts.yml +++ b/.github/workflows/check-security-alerts.yml @@ -22,3 +22,15 @@ jobs: const securityChecker = new SecurityChecker(github, context, '${{secrets.SECURITY_ISSUE_REPO}}'); await securityChecker.check(); + + keepalive-job: + name: Keepalive Workflow + if: ${{ always() }} + runs-on: ubuntu-latest + permissions: + contents: write + steps: + - uses: actions/checkout@v4 + - uses: gautamkrishnar/keepalive-workflow@v2 + with: + gh_token: ${{ secrets.ACTIVE_TOKEN }} diff --git a/.github/workflows/handle-stale.yml b/.github/workflows/handle-stale.yml index a5b5339..441aca0 100644 --- a/.github/workflows/handle-stale.yml +++ b/.github/workflows/handle-stale.yml @@ -18,4 +18,16 @@ jobs: days-before-stale: 180 days-before-close: 10 exempt-issue-labels: "AREA: docs,FREQUENCY: critical,FREQUENCY: level 2,HELP WANTED,!IMPORTANT!,STATE: Need clarification,STATE: Need response,STATE: won't fix,support center" - exempt-pr-labels: "AREA: docs,FREQUENCY: critical,FREQUENCY: level 2,HELP WANTED,!IMPORTANT!,STATE: Need clarification,STATE: Need response,STATE: won't fix,support center" \ No newline at end of file + exempt-pr-labels: "AREA: docs,FREQUENCY: critical,FREQUENCY: level 2,HELP WANTED,!IMPORTANT!,STATE: Need clarification,STATE: Need response,STATE: won't fix,support center" + + keepalive-job: + name: Keepalive Workflow + if: ${{ always() }} + runs-on: ubuntu-latest + permissions: + contents: write + steps: + - uses: actions/checkout@v4 + - uses: gautamkrishnar/keepalive-workflow@v2 + with: + gh_token: ${{ secrets.ACTIVE_TOKEN }} \ No newline at end of file