{"id":22797383,"url":"https://github.com/the-software-compagny/github_actions","last_synced_at":"2026-03-19T23:42:29.452Z","repository":{"id":143456891,"uuid":"609266209","full_name":"The-Software-Compagny/github_actions","owner":"The-Software-Compagny","description":"Simple Github actions to implement on your NodeJS projects, etc.","archived":false,"fork":false,"pushed_at":"2023-04-18T16:18:25.000Z","size":3,"stargazers_count":1,"open_issues_count":4,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-05T21:00:55.434Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","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/The-Software-Compagny.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":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-03-03T18:18:21.000Z","updated_at":"2024-06-14T18:23:40.000Z","dependencies_parsed_at":null,"dependency_job_id":"37ac13cd-393a-44b4-9752-32b27e1bab2d","html_url":"https://github.com/The-Software-Compagny/github_actions","commit_stats":null,"previous_names":["the-software-compagny/github_actions"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/The-Software-Compagny%2Fgithub_actions","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/The-Software-Compagny%2Fgithub_actions/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/The-Software-Compagny%2Fgithub_actions/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/The-Software-Compagny%2Fgithub_actions/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/The-Software-Compagny","download_url":"https://codeload.github.com/The-Software-Compagny/github_actions/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246362131,"owners_count":20765045,"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":[],"created_at":"2024-12-12T06:05:56.530Z","updated_at":"2026-01-11T02:41:36.325Z","avatar_url":"https://github.com/The-Software-Compagny.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Github Actions\n\nSimple Github actions to implement on your NodeJS projects, etc.\n\n## Available actions\n### Docker-image\n```yml\nname: Docker Image CI\n\non:\n  release:\n    types: [published]\n\njobs:\n  build:\n    runs-on: ubuntu-latest\n    permissions:\n      contents: read\n      packages: write\n\n    steps:\n      - name: Checkout the code\n        uses: actions/checkout@v2\n\n      - name: Build docker\n        uses: StreamKITS/github_actions/docker-image@main\n        with:\n          context: .\n          repository: ${{ github.repository }}\n          username: ${{ github.actor }}\n          password: ${{ secrets.GITHUB_TOKEN }}\n```\n\n### Release\n```yml\nname: Release\n\non:\n  workflow_dispatch:\n    inputs:\n      version_increment:\n        description: 'La version a incrémenter (major, minor, patch)'\n        required: true\n        default: 'patch'\n        type: choice\n        options:\n        - 'major'\n        - 'minor'\n        - 'patch'\n      build_docker_image:\n        description: \"Construire l'image docker ?\"\n        required: true\n        default: true\n        type: boolean\n      latest:\n        description: \"Tagger l'image docker avec le tag 'latest' ?\"\n        required: true\n        default: true\n        type: boolean\n\njobs:\n  build:\n    runs-on: ubuntu-latest\n    permissions:\n      contents: read\n      packages: write\n\n    steps:\n      - name: Build docker\n        uses: StreamKITS/github_actions/release@main\n        with:\n          version_increment: ${{ github.event.inputs.version_increment }}\n          build_docker_image: ${{ github.event.inputs.build_docker_image }}\n          latest: ${{ github.event.inputs.latest }}\n          repository: ${{ github.repository }}\n          username: ${{ github.actor }}\n          password: ${{ secrets.GITHUB_TOKEN }}\n          github_token: ${{ secrets.GITHUB_TOKEN }}\n          # Optional parameters, thoses are default values :\n          registry: 'ghcr.io'\n          context: .\n          build-args: ''\n```\nBadge de release :\n```md\n[![Release](https://github.com/\u003crepo_owner\u003e/\u003crepo_name\u003e/actions/workflows/release.yml/badge.svg)](https://github.com/\u003crepo_owner\u003e/\u003crepo_name\u003e/actions/workflows/release.yml?event=workflow_dispatch)\n```\n\n### K8s-Deploy\nSoon...\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthe-software-compagny%2Fgithub_actions","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthe-software-compagny%2Fgithub_actions","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthe-software-compagny%2Fgithub_actions/lists"}