Skip to content

Commit

Permalink
Migrate the Github Actions to the new YAML syntax (#16981)
Browse files Browse the repository at this point in the history
  • Loading branch information
youknowriad authored and gziolo committed Aug 29, 2019
1 parent 96a2d04 commit 0742e46
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 36 deletions.
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 }}

0 comments on commit 0742e46

Please sign in to comment.