diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..c257fe9 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,20 @@ +on: + - pull_request + - push + +jobs: + task1_job: + name: first task + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: list PR branches + run: | + echo "PR branch base ref: ${{ github.event.pull_request.base.ref }} head ref: ${{ github.event.pull_request.head.ref }}" + if: github.event_name == 'pull_request' + - name: list push branches + run: | + echo "Push branch ref: ${{ github.ref }} commit: $GITHUB_SHA" + if: github.event_name == 'push' + - name: list files in repo + run: ls -laR \ No newline at end of file diff --git a/.gitignore b/.gitignore index e69de29..723ef36 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +.idea \ No newline at end of file diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..a9d7db9 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,10 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml +# GitHub Copilot persisted chat sessions +/copilot/chatSessions