diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml
deleted file mode 100644
index c5faa34..0000000
--- a/.github/workflows/integration-tests.yml
+++ /dev/null
@@ -1,31 +0,0 @@
-name: Integration Tests
-
-on: push
-
-jobs:
- test-commit-works:
- runs-on: ubuntu-latest
-
- steps:
- - uses: actions/checkout@v2
- with:
- ref: master
-
- - name: Create Remote Branch
- run: |
- git checkout -b ci-test
- git push origin ci-test
- git checkout master
-
- - name: Add Files
- run: touch {a,b,c}.txt
-
- - name: Run git-auto-commit
- id: "auto-commit-action"
- uses: ./
- with:
- branch: ci-test
- commit_message: Message
-
- - name: Delete Branch
- run: git push -d origin ci-test
diff --git a/README.md b/README.md
index fa4a43b..2c12ff1 100644
--- a/README.md
+++ b/README.md
@@ -6,9 +6,6 @@
-
-
-
This GitHub Action automatically commits files which have been changed during a Workflow run and pushes the commit back to GitHub.
By default, the commit is made in the name of "GitHub Actions" and co-authored by the user that made the last commit.