Skip to content

Commit

Permalink
Merge pull request #3 from technote-space/release/v0.0.6
Browse files Browse the repository at this point in the history
Release/v0.0.6
  • Loading branch information
technote-space committed Sep 25, 2019
2 parents a89c094 + c11d268 commit b5c1e86
Show file tree
Hide file tree
Showing 8 changed files with 37 additions and 16 deletions.
5 changes: 5 additions & 0 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,8 @@ php:

'Type: Documentation':
- '**/*.md'

'Type: CI/CD':
- '.github/workflows/*.yml'
- '.circleci/*'
- '.travis.yml'
1 change: 1 addition & 0 deletions .github/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ categories:
labels:
- 'Type: Feature'
- 'Type: Refactoring'
- 'Type: CI/CD'
- title: ':bug: Bug Fixes'
labels:
- 'Type: Bug'
Expand Down
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 }}
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
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@technote-space/github-action-test-helper",
"version": "0.0.5",
"version": "0.0.6",
"description": "Test helper for GitHub Action.",
"author": "Technote <technote.space@gmail.com> (https://technote.space)",
"license": "MIT",
Expand All @@ -26,7 +26,7 @@
},
"devDependencies": {
"@types/jest": "^24.0.18",
"@types/node": "^12.7.5",
"@types/node": "^12.7.7",
"@typescript-eslint/eslint-plugin": "^2.3.1",
"@typescript-eslint/parser": "^2.3.1",
"eslint": "^6.4.0",
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -425,10 +425,10 @@
resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.3.tgz#bdfd69d61e464dcc81b25159c270d75a73c1a636"
integrity sha512-Il2DtDVRGDcqjDtE+rF8iqg1CArehSK84HZJCT7AMITlyXRBpuPhqGLDQMowraqqu1coEaimg4ZOqggt6L6L+A==

"@types/node@^12.7.5":
version "12.7.5"
resolved "https://registry.yarnpkg.com/@types/node/-/node-12.7.5.tgz#e19436e7f8e9b4601005d73673b6dc4784ffcc2f"
integrity sha512-9fq4jZVhPNW8r+UYKnxF1e2HkDWOWKM5bC2/7c9wPV835I0aOrVbS/Hw/pWPk2uKrNXQqg9Z959Kz+IYDd5p3w==
"@types/node@^12.7.7":
version "12.7.7"
resolved "https://registry.yarnpkg.com/@types/node/-/node-12.7.7.tgz#f9bd8c00fa9e1a8129af910fc829f6139c397d6c"
integrity sha512-4jUncNe2tj1nmrO/34PsRpZqYVnRV1svbU78cKhuQKkMntKB/AmdLyGgswcZKjFHEHGpiY8pVD8CuVI55nP54w==

"@types/stack-utils@^1.0.1":
version "1.0.1"
Expand Down

0 comments on commit b5c1e86

Please sign in to comment.