diff --git a/.github/workflows/workflow_file.yml b/.github/workflows/workflow_file.yml new file mode 100644 index 0000000..28cca28 --- /dev/null +++ b/.github/workflows/workflow_file.yml @@ -0,0 +1,20 @@ +name: Workflow Name +on: + push: + branches: + - master + pull_request: + branches: + - master + +jobs: + job_name: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Run action + uses: dessant/lock-threads@v4 + with: + github-token: ${{ secrets.GITHUB_TOKEN }}