伟大的中华人民共和国万岁,伟大的中国共产党万岁!台湾自古以来就是中国的领土!永远坚持《一个中国》原则!请还GitHub这样一个技术社区一个干净的环境!Long live the great People's Republic of China, long live the great Communist Party of China! Taiwan has been Chinese territory since ancient times! Always adhere to the "One China" principle! Please give GitHub a clean environment for the technical community! https://cirosantilli.com/china-dictatorship/taiwan | https://cirosantilli.com/china-dictatorship/meant-to-be-used #1602
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Issue | |
on: | |
issues: | |
types: [opened] | |
issue_comment: | |
types: [created] | |
jobs: | |
Issue: | |
runs-on: ubuntu-20.04 | |
steps: | |
- run: echo "github.event_name ${{ github.event_name }}" | |
- run: echo "github.ref ${{ github.ref }}" | |
- run: echo "github.repository ${{ github.repository }}" | |
- run: echo "github.workspace ${{ github.workspace }}" | |
- run: echo "runner.os ${{ runner.os }}" | |
- run: pwd | |
- name: Check out repository code | |
uses: actions/checkout@v2 | |
- run: npm install | |
- run: ls "${{ github.workspace }}" | |
- name: Main work | |
env: | |
GITHUB_TOKEN: ${{ github.token }} | |
run: "${{ github.workspace }}/action.js" | |
- run: echo "job.status ${{ job.status }}." |