{"id":17027589,"url":"https://github.com/mathieu-keller/github-action-workflows","last_synced_at":"2026-05-15T20:32:36.721Z","repository":{"id":335583273,"uuid":"1083103616","full_name":"mathieu-keller/github-action-workflows","owner":"mathieu-keller","description":null,"archived":false,"fork":false,"pushed_at":"2026-05-09T01:24:30.000Z","size":34,"stargazers_count":0,"open_issues_count":2,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-09T03:32:37.286Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mathieu-keller.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-10-25T10:57:47.000Z","updated_at":"2026-04-10T01:57:57.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/mathieu-keller/github-action-workflows","commit_stats":null,"previous_names":["mathieu-keller/github-action-workflows"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/mathieu-keller/github-action-workflows","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mathieu-keller%2Fgithub-action-workflows","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mathieu-keller%2Fgithub-action-workflows/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mathieu-keller%2Fgithub-action-workflows/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mathieu-keller%2Fgithub-action-workflows/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mathieu-keller","download_url":"https://codeload.github.com/mathieu-keller/github-action-workflows/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mathieu-keller%2Fgithub-action-workflows/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33078899,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-15T20:25:35.270Z","status":"ssl_error","status_checked_at":"2026-05-15T20:25:34.732Z","response_time":103,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":[],"created_at":"2024-10-14T07:49:08.123Z","updated_at":"2026-05-15T20:32:36.705Z","avatar_url":"https://github.com/mathieu-keller.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Semantic Release GitHub Action Workflow\n\nThis GitHub Actions workflow automates the process of creating semantic releases and adding release notes to pull requests. It uses the \"mathieu-keller/github-action-workflows\" repository's semantic release action.\n\n## Workflow Configuration\n\n### YAML Configuration\n\nTo use this workflow, add the following YAML configuration to your repository's `.github/workflows` directory in a file, e.g., `semantic-release.yml`:\n\n```yaml\nname: Semantic Release\n\non:\n  push:\n    branches:\n      - main\n  pull_request:\n\npermissions:\n  contents: write\n  issues: write\n  pull-requests: write\n\njobs:\n  dry:\n    name: dry release\n    uses: mathieu-keller/github-action-workflows/.github/workflows/semantic-release.yaml@main\n    if: ${{ github.ref != 'refs/heads/main' }}\n    with:\n      release-branch: main\n      dry: true\n  show-outputs:\n    needs: [ dry ]\n    runs-on: ubuntu-22.04\n    steps:\n      - name: echo\n        run: |\n          echo \"${{needs.dry.outputs.new_version}}\"\n  release:\n    name: create release\n    if: ${{ github.ref == 'refs/heads/main' }}\n    uses: mathieu-keller/github-action-workflows/.github/workflows/semantic-release.yaml@main\n    with:\n      release-branch: main\n      dry: false\n```\n\nThis configuration triggers the workflow on pushes to the `main` branch and uses the semantic release action with the specified options.\n\n### Action Parameters\n\n- `dry`: A boolean parameter that controls whether the action runs in dry-run mode. When set to `true`, no actual releases are created, and the action simulates the release process.\n- `release-branch`: The branch where releases are created. This parameter allows you to specify the branch for creating releases. The default is set to `main`.\n\n### Action Outputs\n\n- `new_version`: this output contains the new version. If the release is not on the specified release branch, the version will be the branch name plus the commit hash.\n\n## Example Usage\n\n1. Push changes to the `main` branch or to an pull request.\n2. The workflow will trigger, and if conditions are met, it will create a semantic release, or the release notes will be added to the pull requests.\n\n## Contributing\n\nIf you encounter issues or have suggestions for improvements, feel free to [open an issue](https://github.com/mathieu-keller/github-action-workflows/issues) or [create a pull request](https://github.com/mathieu-keller/github-action-workflows/pulls).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmathieu-keller%2Fgithub-action-workflows","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmathieu-keller%2Fgithub-action-workflows","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmathieu-keller%2Fgithub-action-workflows/lists"}