diff --git a/.github/workflows/workflow_file.yml b/.github/workflows/workflow_file.yml new file mode 100644 index 00000000..b2575bd6 --- /dev/null +++ b/.github/workflows/workflow_file.yml @@ -0,0 +1,21 @@ +name: Workflow Name + +on: + push: + branches: + - main + pull_request: + branches: + - main + +jobs: + job_name: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Translate issue comments + uses: usthe/issues-translate-action@v2.7 + with: + token: ${{ secrets.GITHUB_TOKEN }}