-
Notifications
You must be signed in to change notification settings - Fork 53
75 lines (68 loc) · 2.12 KB
/
issue.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
name: new job action
on:
issues:
types:
- opened
workflow_dispatch:
jobs:
add-new-job:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Change README.md
run: |
time=$(date +%F -d "${{github.event.issue.updated_at}}")
echo "- [${{ github.event.issue.title}}](${{github.event.issue.html_url}}) $time" >> README.md
- name: Commit files
run: |
git config --local user.name ${{ github.actor }}
git config --local user.email "bot@rebase.community"
git add README.md
git commit -m "submit new job (Automated)"
- name: Push changes
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
force: true
push-telegram:
runs-on: ubuntu-latest
steps:
- name: Send to telegram
uses: appleboy/telegram-action@master
with:
to: ${{ secrets.TELEGRAM_TO }}
token: ${{ secrets.TELEGRAM_TOKEN }}
message: |
新的职位 ${{github.event.issue.html_url}}
##################################################
new-discussion:
permissions: write-all
runs-on: ubuntu-latest
needs: add-new-job
steps:
- run: |
gh api -i graphql -f query='
mutation {
createDiscussion(
input: {repositoryId: "R_kgDOG8AAIw", categoryId: "DIC_kwDOG8AAI84CN7YB",
title: "${{github.event.issue.title}}", body: "具体内容请看:${{github.event.issue.html_url}}"
}
)
{
discussion {
id
number
title
}
}
}
'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
issue-reply:
runs-on: ubuntu-latest
steps:
- run: gh issue comment $ISSUE --body "欢迎您提交招聘信息,Rebase 会整理招聘内容,通过公众号发出。"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
ISSUE: ${{ github.event.issue.html_url }}