From dacfda326734da66ebe8296eb8f1dc9067afbe91 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Kuna?= <1282324+codecalm@users.noreply.github.com> Date: Wed, 13 Mar 2024 03:41:02 +0100 Subject: [PATCH] Github Actions improve (#1049) * github actions * github actions --- .github/labeler.yml | 15 ++++++++++++++ ...{close_inactive.yml => close-inactive.yml} | 0 .github/workflows/close-stale-prs.yml | 20 +++++++++++++++++++ 3 files changed, 35 insertions(+) rename .github/workflows/{close_inactive.yml => close-inactive.yml} (100%) create mode 100644 .github/workflows/close-stale-prs.yml diff --git a/.github/labeler.yml b/.github/labeler.yml index ff3062c73..fa5e8c608 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -3,3 +3,18 @@ - changed-files: - any-glob-to-any-file: - pnpm-lock.yaml + +# For icons changes +๐ŸŽจ icons: + - changed-files: + - any-glob-to-any-file: + - 'icons/**/*.svg' + - aliases.json + +# For Github Actions +๐Ÿค– github-actions: + - changed-files: + - any-glob-to-any-file: + - .github/workflows/*.yml + - .github/labeler.yml + - .github/dependabot.yml diff --git a/.github/workflows/close_inactive.yml b/.github/workflows/close-inactive.yml similarity index 100% rename from .github/workflows/close_inactive.yml rename to .github/workflows/close-inactive.yml diff --git a/.github/workflows/close-stale-prs.yml b/.github/workflows/close-stale-prs.yml new file mode 100644 index 000000000..0b47315f4 --- /dev/null +++ b/.github/workflows/close-stale-prs.yml @@ -0,0 +1,20 @@ +name: Close stale issues and PR +on: + schedule: + - cron: '45 1 * * *' + +jobs: + stale: + runs-on: ubuntu-latest + permissions: + pull-requests: write + steps: + - uses: actions/stale@v9 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + stale-pr-message: This PR is stale because it has been open 45 days with no activity. Remove stale label or comment or this will be closed in 5 days. + close-pr-message: This PR was closed because it has been stalled for 5 days with no activity. + close-pr-label: ๐Ÿงถ stale + days-before-stale: 30 + days-before-issue-stale: -1 + days-before-close: -1