Skip to content

Commit

Permalink
Merge 1ae8954 into b25c2ba
Browse files Browse the repository at this point in the history
  • Loading branch information
technote-space committed Sep 25, 2019
2 parents b25c2ba + 1ae8954 commit f1b645a
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 10 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/check_version.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
on: push
name: Check package version
jobs:
checkVersion:
name: Check package version
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
with:
fetch-depth: 3
- name: Check package version
uses: technote-space/ga-package-version-checker@v1
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
TEST_TAG_PREFIX: test/
BRANCH_PREFIX: release/
8 changes: 4 additions & 4 deletions .github/workflows/issue_opened.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
on: issues
on:
issues:
types: [opened]
name: Issue opened
jobs:
assign:
name: Assign issues to project
runs-on: ubuntu-latest
steps:
- name: Assign issues to project
if: github.event.action == 'opened'
uses: alex-page/github-project-automation-plus@master
uses: alex-page/github-project-automation-plus@v0.0.3
with:
project: Backlog
column: To do
Expand All @@ -18,7 +19,6 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Assign author to issue
if: github.event.action == 'opened'
uses: technote-space/assign-author@v1
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
9 changes: 4 additions & 5 deletions .github/workflows/pr_opened.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
on: pull_request
on:
pull_request:
types: [opened]
name: Pull Request opened
jobs:
assignToProject:
name: Assign PullRequest to Project
runs-on: ubuntu-latest
steps:
- name: Assign PullRequest to Project
if: github.event.action == 'opened'
uses: alex-page/github-project-automation-plus@master
uses: alex-page/github-project-automation-plus@v0.0.3
with:
project: Backlog
column: To do
Expand All @@ -18,7 +19,6 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Assign Author to PR
if: github.event.action == 'opened'
uses: technote-space/assign-author@v1
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -28,7 +28,6 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: PR Labeler
if: github.event.action == 'opened'
uses: technote-fork/pr-labeler-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4 changes: 4 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ jobs:
uses: actions/checkout@master
with:
fetch-depth: 3
- name: Check package version
uses: technote-space/ga-package-version-checker@v1
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Install Package dependencies
run: yarn install
- name: Test
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/toc.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
on: push
name: TOC Generator
jobs:
assignAuthor:
toc:
name: TOC Generator
runs-on: ubuntu-latest
steps:
Expand Down
1 change: 1 addition & 0 deletions bin/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

set -e

rm -f .github/workflows/check_version.yml
rm -f .github/workflows/ci.yml
rm -f .github/workflows/gh_releases.yml
rm -f .github/workflows/issue_opened.yml
Expand Down

0 comments on commit f1b645a

Please sign in to comment.