-
-
Notifications
You must be signed in to change notification settings - Fork 1k
37 lines (37 loc) · 1.19 KB
/
hosting-comment-checker.yml
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
name: Hosting re-checker
on:
issue_comment:
types:
- created
- edited
jobs:
hosting:
runs-on: ubuntu-latest
if: ${{ github.event.comment.body == '/hosting re-check'}}
steps:
- name: Ack
uses: actions/github-script@v7
with:
script: |
const {owner, repo} = context.issue
github.rest.reactions.createForIssueComment({
owner,
repo,
comment_id: context.payload.comment.id,
content: "+1",
});
- uses: actions/checkout@v4
with:
ref: 'master'
- uses: actions/setup-java@v4
with:
distribution: 'temurin' # See 'Supported distributions' for available options
java-version: '21'
cache: 'maven'
- name: Build with Maven
run: mvn -B package -Dspotbugs.skip
- name: Run hosting checker
run: |
java -cp target/repository-permissions-updater-1.0-SNAPSHOT-bin/repository-permissions-updater-1.0-SNAPSHOT.jar io.jenkins.infra.repository_permissions_updater.hosting.HostingChecker ${{ github.event.issue.number }}
env:
GITHUB_OAUTH: ${{ secrets.GITHUB_TOKEN }}