-
Notifications
You must be signed in to change notification settings - Fork 12
59 lines (59 loc) · 2.24 KB
/
autoTestPR.yml
File metadata and controls
59 lines (59 loc) · 2.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
name: "Auto test PR"
on:
issue_comment:
types: [created]
permissions:
contents: write
issues: write
jobs:
autoTestPR:
runs-on: ubuntu-latest
if: startsWith(github.event.comment.body, 'auto exclude test')
steps:
- name: Set up Python 3.8
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
with:
python-version: 3.8
- name: check python version
run: |
python -V
- name: install xml module
run: |
pip install lxml
- name: checkout current repo
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
path: 'tests'
- name: checkout TKG repo
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
repository: 'adoptium/TKG.git'
ref: 'master'
path: 'TKG'
- name: run script
env:
comment_body: ${{ github.event.comment.body }}
run: |
git config --list
python TKG/scripts/testBot/disable.py -m "$comment_body" -c "${{ github.event.comment.html_url }}" -d "$GITHUB_WORKSPACE/tests"
- name: test cannot be found
if: failure()
run: |
curl -u github-actions:${{ secrets.GITHUB_TOKEN }} -d '{ "body": "The specified test cannot be excluded. Action run: https://github.com/${{github.repository}}/actions/runs/${{github.run_id}}" }' -X POST ${{ github.event.issue.comments_url }}
- name: Create Pull Request
uses: peter-evans/create-pull-request@5f6978faf089d4d20b00c7766989d076bb2fc7f1 # v8.1.1
with:
path: 'tests'
title: '${{ github.event.comment.body }}'
body: |
related: ${{ github.event.comment.html_url }}
triggered by @${{ github.event.comment.user.login }}
commit-message: |
AUTO: ${{ github.event.comment.body }}
- related: ${{ github.event.comment.html_url }}
branch: 'autoTestPR'
branch-suffix: 'random'
signoff: 'true'
- name: add label
run: |
curl -u github-actions:${{ secrets.GITHUB_TOKEN }} -d '{"labels":["test excluded"]}' -X POST ${{ github.event.issue.url }}/labels