parent
a2539f5cfa
commit
11deb62637
@ -0,0 +1 @@
|
|||||||
|
Subproject commit 1b5a8a677b9ac6b10ffe7c275ebb0f9c8cff62bb
|
@ -0,0 +1 @@
|
|||||||
|
Subproject commit 0058d0094da27e116fad6e0da516ebe1107f26de
|
@ -0,0 +1,64 @@
|
|||||||
|
# Licensed to the Apache Software Foundation (ASF) under one
|
||||||
|
# or more contributor license agreements. See the NOTICE file
|
||||||
|
# distributed with this work for additional information
|
||||||
|
# regarding copyright ownership. The ASF licenses this file
|
||||||
|
# to you 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: "Label when approved workflow run"
|
||||||
|
on:
|
||||||
|
workflow_run:
|
||||||
|
workflows: [Label-when-reviewed]
|
||||||
|
types: [requested]
|
||||||
|
permissions:
|
||||||
|
# All other permissions are set to none
|
||||||
|
checks: write
|
||||||
|
contents: read
|
||||||
|
pull-requests: write
|
||||||
|
jobs:
|
||||||
|
label-when-approved:
|
||||||
|
name: "Label when approved"
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
outputs:
|
||||||
|
isApprovedByCommiters: ${{ steps.label-when-approved-by-commiters.outputs.isApproved }}
|
||||||
|
isApprovedByAnyone: ${{ steps.label-when-approved-by-anyone.outputs.isApproved }}
|
||||||
|
steps:
|
||||||
|
- name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )"
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
persist-credentials: false
|
||||||
|
submodules: recursive
|
||||||
|
- name: "Get information about the original trigger of the run"
|
||||||
|
uses: ./.github/actions/get-workflow-origin
|
||||||
|
id: source-run-info
|
||||||
|
with:
|
||||||
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
sourceRunId: ${{ github.event.workflow_run.id }}
|
||||||
|
- name: Label when approved by commiters
|
||||||
|
uses: ./.github/actions/label-when-approved-action
|
||||||
|
id: label-when-approved-by-commiters
|
||||||
|
with:
|
||||||
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
label: 'approved'
|
||||||
|
require_committers_approval: 'true'
|
||||||
|
remove_label_when_approval_missing: 'true'
|
||||||
|
pullRequestNumber: ${{ steps.source-run-info.outputs.pullRequestNumber }}
|
||||||
|
- name: Label when approved by anyone
|
||||||
|
uses: ./.github/actions/label-when-approved-action
|
||||||
|
id: label-when-approved-by-anyone
|
||||||
|
with:
|
||||||
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
label: 'reviewed'
|
||||||
|
pullRequestNumber: ${{ steps.source-run-info.outputs.pullRequestNumber }}
|
||||||
|
remove_label_when_approval_missing: 'true'
|
@ -0,0 +1,28 @@
|
|||||||
|
# Licensed to the Apache Software Foundation (ASF) under one
|
||||||
|
# or more contributor license agreements. See the NOTICE file
|
||||||
|
# distributed with this work for additional information
|
||||||
|
# regarding copyright ownership. The ASF licenses this file
|
||||||
|
# to you 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: Label-when-reviewed
|
||||||
|
on: pull_request_review
|
||||||
|
jobs:
|
||||||
|
|
||||||
|
label-when-reviewed:
|
||||||
|
name: "Label PRs when reviewed"
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: "Do nothing. Only trigger corresponding workflow_run event"
|
||||||
|
run: echo
|
@ -1,3 +1,9 @@
|
|||||||
[submodule "docs/themes/book"]
|
[submodule "docs/themes/book"]
|
||||||
path = docs/themes/book
|
path = docs/themes/book
|
||||||
url = https://github.com/alex-shpak/hugo-book
|
url = https://github.com/alex-shpak/hugo-book
|
||||||
|
[submodule ".github/actions/get-workflow-origin"]
|
||||||
|
path = .github/actions/get-workflow-origin
|
||||||
|
url = https://github.com/potiuk/get-workflow-origin
|
||||||
|
[submodule ".github/actions/label-when-approved-action"]
|
||||||
|
path = .github/actions/label-when-approved-action
|
||||||
|
url = https://github.com/TobKed/label-when-approved-action
|
||||||
|
Loading…
Reference in New Issue