Skip to content

成都/福州公司诚聘 Windows逆向工程师 薪水 20k-50k RMB #331

成都/福州公司诚聘 Windows逆向工程师 薪水 20k-50k RMB

成都/福州公司诚聘 Windows逆向工程师 薪水 20k-50k RMB #331

Workflow file for this run

name: new job action
on:
issues:
types:
- opened
workflow_dispatch:
jobs:
newjob:
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: issue-manager

Check failure on line 47 in .github/workflows/issue.yml

View workflow run for this annotation

GitHub Actions / new job action

Invalid workflow file

The workflow is not valid. .github/workflows/issue.yml (Line: 47, Col: 12): Job 'new-discussion' depends on unknown job 'issue-manager'.

Check failure on line 47 in .github/workflows/issue.yml

View workflow run for this annotation

GitHub Actions / new job action

Invalid workflow file

The workflow is not valid. .github/workflows/issue.yml (Line: 47, Col: 12): Job 'new-discussion' depends on unknown job 'issue-manager'.
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 }}