mirror of
https://github.com/konpa/devicon.git
synced 2025-08-07 23:27:47 +02:00
Bugfix/fix in-develop labeler (#1410)
* fix issue not being labeled with in-develop * restrict to only run on merge to develop * Remove Python setup Co-authored-by: Josélio Júnior <76992016+lunatic-fox@users.noreply.github.com> --------- Co-authored-by: Josélio Júnior <76992016+lunatic-fox@users.noreply.github.com> Co-authored-by: David Leal <halfpacho@gmail.com>
This commit is contained in:
committed by
GitHub
parent
ed1798836c
commit
70df11eef5
16
.github/scripts/build_assets/api_handler.py
vendored
16
.github/scripts/build_assets/api_handler.py
vendored
@@ -180,3 +180,19 @@ def get_issues_by_labels(token: str, labels: List[str]):
|
|||||||
issues.extend(issues_only)
|
issues.extend(issues_only)
|
||||||
|
|
||||||
return issues
|
return issues
|
||||||
|
|
||||||
|
|
||||||
|
def get_pr_by_number(token: str, pr_num: str):
|
||||||
|
url = base_url + "pulls/" + pr_num
|
||||||
|
headers = {
|
||||||
|
"Authorization": f"token {token}"
|
||||||
|
}
|
||||||
|
|
||||||
|
print(f"Querying the GitHub API for requests")
|
||||||
|
response = requests.get(url, headers=headers)
|
||||||
|
if not response:
|
||||||
|
print(f"Can't query the GitHub API. Status code is {response.status_code}. Message is {response.text}")
|
||||||
|
sys.exit(1)
|
||||||
|
|
||||||
|
pr = response.json()
|
||||||
|
return pr
|
||||||
|
4
.github/scripts/build_assets/arg_getters.py
vendored
4
.github/scripts/build_assets/arg_getters.py
vendored
@@ -82,7 +82,7 @@ def get_in_develop_labeler_args():
|
|||||||
help="The GitHub token to access the GitHub REST API.",
|
help="The GitHub token to access the GitHub REST API.",
|
||||||
type=str)
|
type=str)
|
||||||
|
|
||||||
parser.add_argument("body",
|
parser.add_argument("pr_num",
|
||||||
help="The PR's initial comment by the author AKA the `body` attribute of the `pull_request` API object.",
|
help="The PR's number",
|
||||||
type=str)
|
type=str)
|
||||||
return parser.parse_args()
|
return parser.parse_args()
|
||||||
|
6
.github/scripts/in_develop_labeler.py
vendored
6
.github/scripts/in_develop_labeler.py
vendored
@@ -4,8 +4,12 @@ from build_assets import arg_getters, api_handler
|
|||||||
def main():
|
def main():
|
||||||
args = arg_getters.get_in_develop_labeler_args()
|
args = arg_getters.get_in_develop_labeler_args()
|
||||||
try:
|
try:
|
||||||
|
#get pr body
|
||||||
|
pr_body = api_handler.get_pr_by_number(args.token, args.pr_num)["body"]
|
||||||
|
|
||||||
# find the issue closing line
|
# find the issue closing line
|
||||||
issue_line = [line for line in args.body.split("\n") if line.startswith("**This PR closes")][0]
|
print(pr_body.split("\n"))
|
||||||
|
issue_line = [line for line in pr_body.split("\n") if line.startswith("**This PR closes")][0]
|
||||||
|
|
||||||
print("Issue Line is " + issue_line)
|
print("Issue Line is " + issue_line)
|
||||||
issue_pattern = re.compile(r"\d+")
|
issue_pattern = re.compile(r"\d+")
|
||||||
|
27
.github/workflows/in_develop_labeler.yml
vendored
27
.github/workflows/in_develop_labeler.yml
vendored
@@ -1,12 +1,14 @@
|
|||||||
name: Label Issue In Develop
|
name: Label Issue In Develop
|
||||||
on:
|
on:
|
||||||
pull_request:
|
workflow_run:
|
||||||
types: [closed]
|
workflows: ['On Develop PR Merge']
|
||||||
|
types:
|
||||||
|
- completed
|
||||||
jobs:
|
jobs:
|
||||||
label:
|
label_preflight:
|
||||||
name: Label Issue In Develop
|
name: Label Issue In Develop
|
||||||
runs-on: ubuntu-18.04
|
runs-on: ubuntu-18.04
|
||||||
if: github.event.pull_request.merged == true
|
if: ${{ github.event.workflow_run.conclusion == 'success' }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
@@ -20,8 +22,21 @@ jobs:
|
|||||||
python -m pip install --upgrade pip
|
python -m pip install --upgrade pip
|
||||||
pip install -r ./.github/scripts/requirements.txt
|
pip install -r ./.github/scripts/requirements.txt
|
||||||
|
|
||||||
|
- name: Download workflow artifact
|
||||||
|
uses: dawidd6/action-download-artifact@v2.11.0
|
||||||
|
with:
|
||||||
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
workflow: peek_icons.yml
|
||||||
|
run_id: ${{ github.event.workflow_run.id }}
|
||||||
|
|
||||||
|
- name: Read the pr_num file
|
||||||
|
id: pr_num_reader
|
||||||
|
uses: juliangruber/read-file-action@v1.0.0
|
||||||
|
with:
|
||||||
|
path: ./pr_num/pr_num.txt
|
||||||
|
|
||||||
- name: Run in_develop_labeler.py
|
- name: Run in_develop_labeler.py
|
||||||
env:
|
env:
|
||||||
TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
BODY: ${{ github.event.pull_request.body }}
|
PR_NUM: ${{ steps.pr_num_reader.outputs.content }}
|
||||||
run: python ./.github/scripts/in_develop_labeler.py $TOKEN "$BODY"
|
run: python ./.github/scripts/in_develop_labeler.py $TOKEN "$PR_NUM"
|
||||||
|
24
.github/workflows/in_develop_labeler_preflight.yml
vendored
Normal file
24
.github/workflows/in_develop_labeler_preflight.yml
vendored
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
name: On Develop PR Merge
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
types: [closed]
|
||||||
|
branches: [develop]
|
||||||
|
jobs:
|
||||||
|
save_pr_num_in_artifact:
|
||||||
|
name: Preflight Label Issue In Develop
|
||||||
|
runs-on: ubuntu-18.04
|
||||||
|
if: github.event.pull_request.merged == true
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: Save the PR number in an artifact
|
||||||
|
shell: bash
|
||||||
|
env:
|
||||||
|
PR_NUM: ${{ github.event.number }}
|
||||||
|
run: echo $PR_NUM > pr_num.txt
|
||||||
|
|
||||||
|
- name: Upload the PR number
|
||||||
|
uses: actions/upload-artifact@v2.2.4
|
||||||
|
with:
|
||||||
|
name: pr_num
|
||||||
|
path: ./pr_num.txt
|
Reference in New Issue
Block a user