Skip to content

Commit

Permalink
Add: Github Actions
Browse files Browse the repository at this point in the history
Signed-off-by: Nicolas Lamirault <[email protected]>
  • Loading branch information
nlamirault committed Aug 18, 2022
1 parent 8dda651 commit 6316028
Show file tree
Hide file tree
Showing 3 changed files with 130 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/issues-pr-labels-comments.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# Copyright (C) Nicolas Lamirault <[email protected]>
#
# 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.

name: Project / Issues and PR labels comments

on:
issues:
types: [labeled, unlabeled]
pull_request_target:
types: [labeled, unlabeled]

permissions:
contents: read
issues: write
pull-requests: write

jobs:
comment:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3

- name: Label Commenter
uses: peaceiris/actions-label-commenter@v1
67 changes: 67 additions & 0 deletions .github/workflows/issues-pr-labels-required.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
# Copyright (C) Nicolas Lamirault <[email protected]>
#
# 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.

name: Project / Issues and PR labels required

on:
issues:
types: [opened, labeled, unlabeled]
pull_request_target:
types: [opened, labeled, unlabeled]
# schedule:
# - cron: "0 0 * * *"

jobs:
required_labels:
runs-on: ubuntu-latest
steps:
- name: Require prefix kind
uses: trstringer/require-label-prefix@v1
with:
secret: ${{ github.TOKEN }}
prefix: kind
addLabel: true
defaultLabel: needs/kind

- name: Require prefix area
uses: trstringer/require-label-prefix@v1
with:
secret: ${{ github.TOKEN }}
prefix: area
addLabel: true
defaultLabel: needs/area

- name: Require prefix priority
uses: trstringer/require-label-prefix@v1
with:
secret: ${{ github.TOKEN }}
prefix: priority
addLabel: true
defaultLabel: needs/priority

# - name: Require prefix size
# uses: trstringer/require-label-prefix@v1
# with:
# secret: ${{ github.TOKEN }}
# prefix: size
# addLabel: true
# defaultLabel: needs/size

- name: Require prefix status
uses: trstringer/require-label-prefix@v1
with:
secret: ${{ github.TOKEN }}
prefix: status
addLabel: true
defaultLabel: needs/status
28 changes: 28 additions & 0 deletions .github/workflows/pr-labels.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Copyright (C) Nicolas Lamirault <[email protected]>
#
# 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.

# Labels pull requests based on their branch name
name: Project / PR Branch Labeler

on: pull_request

jobs:
label-pr:
runs-on: ubuntu-latest
steps:
- name: Label PR
if: github.event.action == 'opened'
uses: ffittschen/pr-branch-labeler@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 6316028

Please sign in to comment.