{"id":18234083,"url":"https://github.com/liblaf/actions","last_synced_at":"2025-07-27T00:39:00.774Z","repository":{"id":258137596,"uuid":"869919106","full_name":"liblaf/actions","owner":"liblaf","description":"🛠️ Automated GitHub workflows and actions for streamlined development and CI/CD.","archived":false,"fork":false,"pushed_at":"2025-07-15T23:02:10.000Z","size":1040,"stargazers_count":1,"open_issues_count":6,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-16T23:36:36.480Z","etag":null,"topics":["actions","automation","cli","code-review","continuous-integration","dependency-management","github-api","python","release-management","workflow"],"latest_commit_sha":null,"homepage":"https://liblaf.github.io/actions/","language":"Python","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/liblaf.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"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,"zenodo":null}},"created_at":"2024-10-09T06:07:20.000Z","updated_at":"2025-07-11T07:03:06.000Z","dependencies_parsed_at":"2024-10-17T20:12:19.781Z","dependency_job_id":"50717cc3-7e5c-4c56-8c52-156067a74cb6","html_url":"https://github.com/liblaf/actions","commit_stats":{"total_commits":52,"total_committers":2,"mean_commits":26.0,"dds":"0.11538461538461542","last_synced_commit":"64beea92880c5ef32bc704bf96689155b132c001"},"previous_names":["liblaf/actions"],"tags_count":11,"template":false,"template_full_name":null,"purl":"pkg:github/liblaf/actions","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/liblaf%2Factions","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/liblaf%2Factions/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/liblaf%2Factions/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/liblaf%2Factions/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/liblaf","download_url":"https://codeload.github.com/liblaf/actions/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/liblaf%2Factions/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267277023,"owners_count":24063227,"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","status":"online","status_checked_at":"2025-07-26T02:00:08.937Z","response_time":62,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["actions","automation","cli","code-review","continuous-integration","dependency-management","github-api","python","release-management","workflow"],"created_at":"2024-11-04T17:03:23.256Z","updated_at":"2025-07-27T00:39:00.746Z","avatar_url":"https://github.com/liblaf.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# GitHub Actions Collection\n\nThis repository contains a collection of GitHub Actions designed to automate various tasks within your GitHub workflows. Each action is tailored to perform specific functions, enhancing the efficiency and reliability of your CI/CD pipelines.\n\n## Actions Included\n\n- **[auth-app](./auth-app/)**: Authenticates with a GitHub App to generate an installation access token for specified repositories.\n- **[auto-merge](./auto-merge/)**: Automatically merges pending pull requests generated by Release-Please, filtering by GitHub App author and label.\n- **[install](./install/)**: Installs software packages using various package managers (APT, Homebrew, Chocolatey, eget, Linuxbrew, NPM, and pipx) based on the operating system and inputs provided.\n- **[release](./release/)**: Automates the process of creating a release on GitHub, including generating a changelog, formatting it, and uploading specified assets.\n\n## Usage\n\nEach action is designed to be used independently within your GitHub workflows. Refer to the individual action's README for detailed usage instructions and examples.\n\n### Example Workflow\n\n```yaml\nname: Example Workflow\n\non: [push]\n\njobs:\n  authenticate:\n    runs-on: ubuntu-latest\n    steps:\n      - name: Checkout repository\n        uses: actions/checkout@v4\n\n      - name: Authenticate with GitHub App\n        uses: liblaf/actions/auth-app@main\n        with:\n          app-id: ${{ secrets.APP_ID }}\n          private-key: ${{ secrets.PRIVATE_KEY }}\n\n  install:\n    runs-on: ubuntu-latest\n    steps:\n      - name: Checkout repository\n        uses: actions/checkout@v4\n\n      - name: Install Packages\n        uses: liblaf/actions/install@main\n        with:\n          apt: \"package1 package2\"\n          brew: \"package3 package4\"\n\n  release:\n    runs-on: ubuntu-latest\n    steps:\n      - name: Checkout repository\n        uses: actions/checkout@v4\n\n      - name: Create Release\n        uses: liblaf/actions/release@main\n        with:\n          token: ${{ secrets.GITHUB_TOKEN }}\n          tag: v1.0.0\n          clobber: true\n          prerelease: false\n          hasher: sha256\n          files: |\n            dist/*.tar.gz\n            dist/*.zip\n```\n\n## External Links\n\nExplore how this project is used in real-world scenarios:\n\n- [bot-auto-merge.yaml at liblaf/actions](https://github.com/liblaf/actions/blob/main/.github/workflows/bot-auto-merge.yaml)\n- [ci.yaml at liblaf/python-cli](https://github.com/liblaf/python-cli/blob/main/.github/workflows/ci.yaml)\n\n## License\n\nThis project is licensed under the MIT License. See the [LICENSE](./LICENSE) file for details.\n\n## Contributing\n\nContributions are welcome! Please read the [CONTRIBUTING.md](https://github.com/liblaf/.github/blob/main/.github/CONTRIBUTING.md) file for guidelines on how to contribute to this project.\n\n## Issues\n\nIf you encounter any issues or have suggestions for improvements, please open an issue on the [GitHub repository](https://github.com/liblaf/actions/issues).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fliblaf%2Factions","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fliblaf%2Factions","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fliblaf%2Factions/lists"}