From 3df648f8ff491223ad7eca07307cc53d036d035d Mon Sep 17 00:00:00 2001 From: micnncim Date: Tue, 5 May 2020 09:15:10 +0900 Subject: [PATCH] Add initial implementation (#1) --- .github/workflows/lint.yml | 17 +++ .github/workflows/release.yml | 18 +++ .github/workflows/size.yml | 21 ++++ Dockerfile | 7 ++ LICENSE | 201 ++++++++++++++++++++++++++++++++++ README.md | 49 +++++++++ action.yml | 21 ++++ docs/assets/screenshot.png | Bin 0 -> 7989 bytes entrypoint.sh | 22 ++++ 9 files changed, 356 insertions(+) create mode 100644 .github/workflows/lint.yml create mode 100644 .github/workflows/release.yml create mode 100644 .github/workflows/size.yml create mode 100644 Dockerfile create mode 100644 LICENSE create mode 100644 README.md create mode 100644 action.yml create mode 100644 docs/assets/screenshot.png create mode 100755 entrypoint.sh diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml new file mode 100644 index 0000000..49883a0 --- /dev/null +++ b/.github/workflows/lint.yml @@ -0,0 +1,17 @@ +name: Lint + +on: + pull_request: + types: [opened, synchronize] + +jobs: + lint: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: reviewdog/action-shellcheck@v1 + with: + github_token: ${{ secrets.github_token }} + reporter: github-pr-review + path: '.' + pattern: '*.sh' diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..5907b3e --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,18 @@ +name: Create Release + +on: + push: + tags: + - "v*.*.*" + +jobs: + release: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions/create-release@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + tag_name: ${{ github.ref }} + release_name: ${{ github.ref }} diff --git a/.github/workflows/size.yml b/.github/workflows/size.yml new file mode 100644 index 0000000..fd01fa1 --- /dev/null +++ b/.github/workflows/size.yml @@ -0,0 +1,21 @@ +name: Size + +on: + pull_request: + types: [opened, synchronize] + +jobs: + update_labels: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions-ecosystem/action-size@v2 + id: size + - uses: actions-ecosystem/action-remove-labels@v1 + with: + github_token: ${{ secrets.github_token }} + labels: ${{ steps.size.outputs.stale_labels }} + - uses: actions-ecosystem/action-add-labels@v1 + with: + github_token: ${{ secrets.github_token }} + labels: ${{ steps.size.outputs.new_label }} diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..63c38aa --- /dev/null +++ b/Dockerfile @@ -0,0 +1,7 @@ +FROM alpine:latest + +RUN apk add --no-cache jq + +COPY entrypoint.sh /entrypoint.sh + +ENTRYPOINT ["/entrypoint.sh"] diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..60b2c03 --- /dev/null +++ b/LICENSE @@ -0,0 +1,201 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2020 The Actions Ecosystem Authors + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/README.md b/README.md new file mode 100644 index 0000000..e7a33ad --- /dev/null +++ b/README.md @@ -0,0 +1,49 @@ +# Action Release Label + +[![actions-workflow-lint][actions-workflow-lint-badge]][actions-workflow-lint] +[![release][release-badge]][release] +[![license][license-badge]][license] + +![screenshot](./docs/assets/screenshot.png) + +This is a GitHub Action to output a semver update level `major, minor, patch` from a pull request *release* label. + +For example, if a pull request has the label `release/minor`, this action outputs `minor` as level. + +It would be more useful to use this with other GitHub Actions' outputs. + +It's recommended to use this with [actions-ecosystem/action-bump-semver](https://github.com/actions-ecosystem/action-bump-semver) and [actions-ecosystem/action-push-tag](https://github.com/actions-ecosystem/action-push-tag). + +## Inputs + +| NAME | DESCRIPTION | TYPE | REQUIRED | DEFAULT | +|----------------|-------------------------------------------------------------------------|----------|----------|-------------------------------| +| `label_prefix` | A prefix for labels that indicate semver level `{major, minor, patch}`. | `string` | `false` | `release/` | +| `event` | An event that triggers this action. Must be a pull request event. | `string` | `false` | `${{ toJson(github.event) }}` | + +## Outputs + +| NAME | DESCRIPTION | TYPE | +|---------|------------------------------------------------|----------| +| `level` | A semver update level `{major, minor, patch}`. | `string` | + +## Note + +This action is inspired by [haya14busa/action-bumpr](https://github.com/haya14busa/action-bumpr). + +## License + +Copyright 2020 The Actions Ecosystem Authors. + +Action Release Label is released under the [Apache License 2.0](./LICENSE). + + + +[actions-workflow-lint]: https://github.com/actions-ecosystem/action-release-label/actions?query=workflow%3ALint +[actions-workflow-lint-badge]: https://img.shields.io/github/workflow/status/actions-ecosystem/action-release-label/Lint?label=Lint&style=for-the-badge&logo=github + +[release]: https://github.com/actions-ecosystem/action-release-label/releases +[release-badge]: https://img.shields.io/github/v/release/actions-ecosystem/action-release-label?style=for-the-badge&logo=github + +[license]: LICENSE +[license-badge]: https://img.shields.io/github/license/actions-ecosystem/action-add-labels?style=for-the-badge diff --git a/action.yml b/action.yml new file mode 100644 index 0000000..0138798 --- /dev/null +++ b/action.yml @@ -0,0 +1,21 @@ +name: Actions Ecosystem Action Release Label +description: Output semver update level from a label. +author: Actions Ecosystem +inputs: + label_prefix: + description: A prefix for labels that indicate semver level ({major, minor, patch}). + required: false + default: "release/" + event: + description: An event that triggers this action. Must be a pull request event. + required: false + default: ${{ toJson(github.event) }} +outputs: + level: + description: A semver update level ({major, minor, patch}). +runs: + using: docker + image: Dockerfile +branding: + icon: paperclip + color: blue diff --git a/docs/assets/screenshot.png b/docs/assets/screenshot.png new file mode 100644 index 0000000000000000000000000000000000000000..ad09531bcde4942a02f36866c174c386462a867b GIT binary patch literal 7989 zcmb_>1yI{fw|5eP6lsy-(gX?=5AIT=(Bf`IgBECTQe2A^DNvxemf|kO3q^|-x02!x z#T{L8Yl&r5OtHE~1f>%)X!*Ppo6lYrVx| zA?+yhuE}LRGx<*PZl0IiUu7+Mq$90^p6WqB<00A z$YDD1ruWRR9fQZZk*2|#&nROa)rLnOcj=M%D=j-dwgvFPm4*kF^UZv1d@1H4kkUlm z)4WJ$Od7gwy_X;35)#Bacp?WiZ4FY1|gp>bE>lxQLU9scQsxBl`#tWxLTU|8%nrgz=EUp7SKb=pyIC2x;@ z3K1!f*)rRdqBFzl#gSZq1c?*Iiq~-5t!0~Zowq|YL`0$0V@USao5-%?GoNt=bjr{sacpIrYI1j8V1J*1_KP+t^%9c5gYM4 z)D$PkM!{eBD<;q)0DNc$We+lc5^_>ORAeSP-cC3D06QBqy4_ajLDHhg{99~DkOcA` z#&6(TLNFBS8XRB)y$ri&9x~0q8OFR66HFhg0E&yugVH}H*AFX^dJ*fKM>P{L&d>&t zj~(lk%fo93J%-%$8m{0)$k-N86}?Nz(Nrh@5b`$b$A�L3$`zj@*Vp4Q{F2S@z(D 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 'major' + +echo "::set-output name=level::${level}"