From b87d41a09b17b95d7625a5d0d91f1be1bb397d91 Mon Sep 17 00:00:00 2001 From: oblomov <102328295+oblomov-dev@users.noreply.github.com> Date: Fri, 30 Jun 2023 13:40:35 +0200 Subject: [PATCH] Delete test2.yml --- .github/workflows/test2.yml | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 .github/workflows/test2.yml diff --git a/.github/workflows/test2.yml b/.github/workflows/test2.yml deleted file mode 100644 index 1e2a03b1..00000000 --- a/.github/workflows/test2.yml +++ /dev/null @@ -1,26 +0,0 @@ -name: Use a different repository directory -on: - push: - branches: [_action_test] - -jobs: - run: - name: Add a text file - runs-on: ubuntu-latest - - steps: - # If you need to, you can check out your repo to a different location - - uses: actions/checkout@v3 - with: - path: './pathToRepo/' - - # You can make whatever type of change to the repo... - - run: echo "123" > ./pathToRepo/file.txt - - # ...and then use the action as you would normally do, but providing the path to the repo - - uses: EndBug/add-and-commit@v9 - with: - message: 'Add the very useful text file' - add: '*.txt --force' - cwd: './pathToRepo/' - new_branch: custom-new-branch