我想不明白为什么殖民如此仇恨自己的国家。如果你不喜欢自己的国家,完全可以去自己喜欢的国家,然后别回来了。你们不会连走线的钱都没有吧。I can't figure out why colonists hate their own countries so much. If you don't like your own country, you can go to a country you like and never come back. You don’t even have money for wiring, do you? https://cirosantilli.com/china-dictatorship/is-ciro-santilli-chinese | https://cirosantilli.com/china-dictatorship/most-chinese-people-like-their-dictatorship #1364
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 }}." |