Skip to content

Commit

Permalink
Merge branch 'master' into patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
vordimous authored Jun 5, 2024
2 parents 958a9c7 + 42559d8 commit 4af4776
Show file tree
Hide file tree
Showing 5 changed files with 376 additions and 245 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: CI
on:
pull_request:
branches: [master]
jobs:
Awesome_Lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- run: npx awesome-lint
19 changes: 19 additions & 0 deletions .github/workflows/stale-pr.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Close inactive pull requests
on:
schedule:
- cron: "30 1 * * *"

jobs:
close-pull-requests:
runs-on: ubuntu-latest
permissions:
pull-requests: write
steps:
- uses: actions/stale@v9
with:
days-before-pr-stale: 60
days-before-pr-close: 30
stale-pr-label: "stale"
stale-pr-message: "This pull request is stale because it has been open for 60 days with no activity."
close-pr-message: "This pull request was closed because it has been inactive for 30 days since being marked as stale."
repo-token: ${{ secrets.GITHUB_TOKEN }}
Loading

0 comments on commit 4af4776

Please sign in to comment.