Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Migrate the Github Actions to the new YAML syntax #16981

Merged
merged 1 commit into from
Aug 9, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 0 additions & 36 deletions .github/main.workflow

This file was deleted.

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 }}
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 .github/workflows/pull_request-milestone-merged-pull-requests.yml
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 }}