{"id":25347348,"url":"https://github.com/domjtalbot/skip-commit","last_synced_at":"2025-06-12T13:02:12.067Z","repository":{"id":39752475,"uuid":"372199235","full_name":"domjtalbot/skip-commit","owner":"domjtalbot","description":":question: A GitHub Action to check if the last commit message contains a skip request.","archived":false,"fork":false,"pushed_at":"2023-12-15T02:42:52.000Z","size":20,"stargazers_count":1,"open_issues_count":6,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-06-08T23:35:56.443Z","etag":null,"topics":["commit-message","github-action","github-actions","skip"],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/domjtalbot.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":["domjtalbot"]}},"created_at":"2021-05-30T11:41:56.000Z","updated_at":"2023-03-04T06:10:55.000Z","dependencies_parsed_at":"2025-02-14T14:45:07.222Z","dependency_job_id":null,"html_url":"https://github.com/domjtalbot/skip-commit","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/domjtalbot/skip-commit","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/domjtalbot%2Fskip-commit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/domjtalbot%2Fskip-commit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/domjtalbot%2Fskip-commit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/domjtalbot%2Fskip-commit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/domjtalbot","download_url":"https://codeload.github.com/domjtalbot/skip-commit/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/domjtalbot%2Fskip-commit/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":259470836,"owners_count":22862990,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["commit-message","github-action","github-actions","skip"],"created_at":"2025-02-14T14:26:38.460Z","updated_at":"2025-06-12T13:02:11.281Z","avatar_url":"https://github.com/domjtalbot.png","language":null,"funding_links":["https://github.com/sponsors/domjtalbot"],"categories":[],"sub_categories":[],"readme":"# Skip Commit\n\nDoes the last commit message contain a skip request?\n\n## Usage\n\nAn example workflow showing how the following commit can be used to skip the `test` job.\n\n```bash\nchore: update documentation [skip test-job]\n```\n\n```yaml\nname: Example workflow\n\non: pull_request\n\njobs:\n  skip-commit:\n    runs-on: ubuntu-20.04\n    outputs:\n      should-skip: ${{ steps.skip-commit.outputs.should-skip == 'true' }}\n    steps:\n      # Checkout codebase triggered by commit\n      - name: Checkout Codebase\n        uses: actions/checkout@v2.3.4\n        with:\n          # Fetch depth is 2 so that the last pull\n          # request commit can be read.\n          fetch-depth: 2\n\n      # Does the last commit message contain a skip request?\n      - id: skip-commit\n        name: Skip Commit\n        uses: domjtalbot/skip-commit@v1.0.0\n        with:\n          # The string filter to find in the\n          # last commit.\n          filter: '\"\\[skip test-job\\]\"'\n  \n  # A test job that only runs when the last commit\n  # message doesn't contain '[skip example-job]'.\n  test:\n    if: ${{ needs.skip-commit.outputs.should-skip != 'true' }}\n    needs: [skip-commit]\n    runs-on: ubuntu-20.04\n    steps:\n      - name: Tests\n        runs: echo Running tests...\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdomjtalbot%2Fskip-commit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdomjtalbot%2Fskip-commit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdomjtalbot%2Fskip-commit/lists"}