Skip to content

Commit

Permalink
Verified All CI / CD Workflows. [Urgent] (#104)
Browse files Browse the repository at this point in the history

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
offensive-vk and github-actions[bot] authored Aug 30, 2024
2 parents 0646cdc + d4fef66 commit 17dff63
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 18 deletions.
10 changes: 2 additions & 8 deletions .github/workflows/flawfinder.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,12 @@
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.

name: Code Scanning
name: CI / Code Scanning

on:
push:
branches: [ "classic" ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ "classic" ]
schedule:
- cron: '27 7 * * 3'
- cron: '0 0 * * *'

jobs:
flawfinder:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mirror.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: CI / Gitlab - Mirror Sync
on:
schedule:
- cron: '0 */6 * * *'
- cron: '0 */2 * * *'
push:
branches: ["*"]
workflow_dispatch:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/pr-bot.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
name: Automated PR Manager
name: CI / Automated PR Manager

on:
push:
branches-ignore:
- "classic"
workflow_dispatch:
schedule:
- cron: '0 0 * * 0'
- cron: '0 */1 * * *'

jobs:
create_pr:
Expand All @@ -19,8 +19,8 @@ jobs:
with:
destination_branch: "classic"
pr_title: "Automated Pull Request by Actions Bot."
pr_template: ".github/pr-bot-template.md"
pr_template: ".github/PR_BOT_TEMPLATE.md"
pr_reviewer: "offensive-vk"
pr_label: "bot,automated"
pr_label: "bot,automated,unknown"
pr_assignee: "npm-run-test"
pr_draft: false
10 changes: 5 additions & 5 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
name: Mark Stale Issues and PRs
name: CI / Stale Issues and PRs

on:
schedule:
- cron: '10 0 * * *' # Runs daily at 12:10 AM

jobs:
stale:

runs-on: ubuntu-latest
permissions:
issues: write
Expand All @@ -15,8 +14,9 @@ jobs:
steps:
- uses: actions/stale@v5
with:
repo-token: ${{ secrets.GH_TOKEN }}
repo-token: ${{ secrets.GITHUB_TOKEN }}
days-before-close: 7
stale-issue-message: 'This issue seems to be inactive. If you believe its still relevant, please provide an update. Otherwise, it may be closed soon.'
stale-pr-message: 'This pull request seems to be inactive. If you need further assistance or if there is any progress, please update the PR. Otherwise, it may be closed soon.'
stale-issue-label: 'no-issue-activity'
stale-pr-label: 'no-pr-activity'
stale-issue-label: 'no-activity'
stale-pr-label: 'no-activity'

0 comments on commit 17dff63

Please sign in to comment.