summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTheFrenchGhosty <47571719+TheFrenchGhosty@users.noreply.github.com>2021-06-19 07:33:13 +0000
committerGitHub <noreply@github.com>2021-06-19 07:33:13 +0000
commit3f34db549f308715b81bad175f1ad8d3678a8f98 (patch)
treeae40c8b47b8655044023c139210fe66fa2005edc
parentf4c0ee49a7c2a61154324e5a8468697dccf9cf25 (diff)
parent2fc0a6df9311b83cf8f5a6e188da09042aacd9c0 (diff)
downloadinvidious-3f34db549f308715b81bad175f1ad8d3678a8f98.tar.gz
invidious-3f34db549f308715b81bad175f1ad8d3678a8f98.tar.bz2
invidious-3f34db549f308715b81bad175f1ad8d3678a8f98.zip
Merge pull request #2174 from syeopite/workflow-improvements
Workflow improvements
-rw-r--r--.github/workflows/ci.yml13
-rw-r--r--.github/workflows/stale.yml3
2 files changed, 15 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 54e70d0a..99aac794 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -7,6 +7,19 @@ on:
- "api-only"
pull_request:
branches: "*"
+ paths-ignore:
+ - "*.md"
+ - LICENCE
+ - TRANSLATION
+ - invidious.service
+ - .git*
+ - .editorconfig
+
+ - screenshots/*
+ - assets/**
+ - config/**
+ - .github/ISSUE_TEMPLATE/*
+ - kubernetes/**
jobs:
build:
diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml
index e452274b..22831ea2 100644
--- a/.github/workflows/stale.yml
+++ b/.github/workflows/stale.yml
@@ -14,9 +14,10 @@ jobs:
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
days-before-stale: 365
+ days-before-pr-stale: 45 # PRs should be active. Anything that hasn't had activity in more than 45 days should be considered abandoned.
days-before-close: 30
stale-issue-message: 'This issue has been automatically marked as stale and will be closed in 30 days because it has not had recent activity and is much likely outdated. If you think this issue is still relevant and applicable, you just have to post a comment and it will be unmarked.'
- stale-pr-message: 'This pull request has been automatically marked as stale and will be closed in 30 days because it has not had recent activity and is much likely outdated. If you think this pull request is still relevant and applicable, you just have to post a comment and it will be unmarked.'
+ stale-pr-message: 'This pull request has been automatically marked as stale and will be closed in 30 days because it has not had recent activity and is much likely abandoned or outdated. If you think this pull request is still relevant and applicable, you just have to post a comment and it will be unmarked.'
stale-issue-label: "stale"
stale-pr-label: "stale"
ascending: true