-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migrate the Github Actions to the new YAML syntax (#16981)
- Loading branch information
1 parent
aff692e
commit 4af9221
Showing
4 changed files
with
44 additions
and
36 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
16 changes: 16 additions & 0 deletions
16
...request-add-the-first-time-contributor-label-to-prs-opened-by-first-time-contributors.yml
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
on: pull_request | ||
name: Add the First-time Contributor label to PRs opened by first-time contributors | ||
jobs: | ||
filterOpened: | ||
name: Filter opened | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@master | ||
- name: Filter opened | ||
uses: actions/bin/filter@0dbb077f64d0ec1068a644d25c71b1db66148a24 | ||
with: | ||
args: action opened | ||
- name: First Time Contributor | ||
uses: ./.github/actions/first-time-contributor | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
16 changes: 16 additions & 0 deletions
16
.github/workflows/pull_request-assign-fixed-issues-when-pull-request-opened.yml
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
on: pull_request | ||
name: Assign fixed issues when pull request opened | ||
jobs: | ||
filterOpened: | ||
name: Filter opened | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@master | ||
- name: Filter opened | ||
uses: actions/bin/filter@0dbb077f64d0ec1068a644d25c71b1db66148a24 | ||
with: | ||
args: action opened | ||
- name: Assign Fixed Issues | ||
uses: ./.github/actions/assign-fixed-issues | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
12 changes: 12 additions & 0 deletions
12
.github/workflows/pull_request-milestone-merged-pull-requests.yml
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
on: pull_request | ||
name: Milestone merged pull requests | ||
jobs: | ||
milestoneIt: | ||
name: Milestone It | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@master | ||
- name: Milestone It | ||
uses: ./.github/actions/milestone-it | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |