{"id":22173685,"url":"https://github.com/stefruseva88/github-actions-workflow","last_synced_at":"2025-07-26T15:31:44.749Z","repository":{"id":230218645,"uuid":"778791074","full_name":"StefRuseva88/github-actions-workflow","owner":"StefRuseva88","description":"GitHub Actions Workshop  https://github.com/actions-workshop/actions-workshop","archived":false,"fork":false,"pushed_at":"2024-09-18T05:59:05.000Z","size":7172,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-09-18T08:23:23.126Z","etag":null,"topics":["actions","ci-cd","deployment","package-management","security","test-automation"],"latest_commit_sha":null,"homepage":"https://github.com/actions-workshop/actions-workshop","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/StefRuseva88.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":"SUPPORT.md","governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-03-28T12:12:27.000Z","updated_at":"2024-09-18T05:59:02.000Z","dependencies_parsed_at":"2024-04-06T09:20:54.906Z","dependency_job_id":"9f029099-3265-45e1-9344-f0d271dba825","html_url":"https://github.com/StefRuseva88/github-actions-workflow","commit_stats":null,"previous_names":["stefruseva88/actions-experiment"],"tags_count":0,"template":false,"template_full_name":"actions-workshop/actions-workshop","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StefRuseva88%2Fgithub-actions-workflow","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StefRuseva88%2Fgithub-actions-workflow/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StefRuseva88%2Fgithub-actions-workflow/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StefRuseva88%2Fgithub-actions-workflow/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/StefRuseva88","download_url":"https://codeload.github.com/StefRuseva88/github-actions-workflow/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":227691297,"owners_count":17805099,"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":["actions","ci-cd","deployment","package-management","security","test-automation"],"created_at":"2024-12-02T07:34:43.017Z","updated_at":"2024-12-02T07:34:44.239Z","avatar_url":"https://github.com/StefRuseva88.png","language":"TypeScript","readme":"# GitHub Actions Workshop by GitHub\n\n\u003e *Lift-off with GitHub Actions - it's not rocket-science (unless you use it for rockets).* 🚀\n\nWelcome to our GitHub Actions Workshop! It will teach you all the basics of GitHub Actions and beyond, so that you feel confident in automating your own workflows and deployments.\n\nOur goal is to make GitHub Actions as easy to you as floating in space!\n\n![GitHubs Octocat Mascot in a space suite floating above earth](docs/images/octonaut.jpg)\n\nFollowing this workshop, you will create a set of GitHub Action workflows in order to **test, release, secure** and **deploy** the **Rocketdex** 🚀 - an awesome React-Application that lets you view and collect all your favorite rockets!\n\nYou will learn how to\n\n- run your **first GitHub Action**\n- use [**the Marketplace**](https://github.com/marketplace)\n- create a complete and secure **CI pipeline** from scratch\n- deploy your application to [Microsoft Azure](https://azure.com/) (or another Cloud Provider of your choice)\n\n## Getting Started 🚀\n\nAnything you need for this workshop is contained within this template-repository - so the first thing you need to do is get a copy of it:\n\n1. On the top right, click the green `Use this template` button\n    ![Image of the green button saying Use this Repo](./docs/images/setsup_use-this-template.png)\n2. Give your new repository any name you like (for example `\u003cyour-name\u003e-gh-actions-workshop`)\n3. Decide for an owner of the new repository (when in doubt, use your private GitHub account)\n4. Make it a `Public` repository so you don't use up any of your private action minutes\n5. Click `Create repository from template`\n\n![Image of Repository Creation Screen with settings as explained above](docs/images/setup_create-repo.png)\n\nIn your own repository, you now can safely create and change all files and run actions workflows according to the instructions shared by your trainer or by following our [self-serve documents](#workshop-parts-) below.\n\n## Workshop Parts 📚\n\nThese are the self-serve documents you can follow to complete this workshop. If you are doing this with a trainer, these are your reference materials:\n\n1. **[Hello World - Run your first Action](./docs/001-hello-world.md)**\n2. **[Basics of Continous Integration - Build \u0026 Test](./docs/002-basics-of-ci-with-actions.md)**\n3. **[Package and release your Application](./docs/003-packaging.md)**\n4. **[Security with Actions](./docs/004-security.md)**\n5. **[Lift-off - Deployment with Actions](./docs/005-deployment.md)**\n\n## Rocketdex  Application Setup\n\nThe **Rocketdex** application is a [React](https://reactjs.org/)-Application build with [vite](https://vitejs.dev/) and tested with [vitest](https://vitest.dev/).\n\nYou can simply clone it and install all dependencies using:\n\n```sh\nnpm install\n```\n\nAfter that, you can start it in development mode to have a look at it:\n\n```sh\nnpm run dev\n```\n\n### Other useful commands\n\n| Description                                               | Command         |\n| --------------------------------------------------------- | --------------- |\n| Build and Bundle the App using [vite](https://vitejs.dev) | `npm run build` |\n| Run Unit Tests with [vitest](https://vitest.dev/)         | `npm run test`  |\n| Lint the Code with [ESLint](https://eslint.org/)          | `npm run lint`  |\n\n## Contributions\n\nPlease see [CONTRIBUTING.md](./CONTRIBUTING.md) for details.\n\n## Licensing\n\nThis repo is licensed under MIT for code and CC BY-SA 4.0 for documentation (`docs/` folder and the `README.md.`). See the [LICENSE](./LICENSE) File for more information.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstefruseva88%2Fgithub-actions-workflow","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstefruseva88%2Fgithub-actions-workflow","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstefruseva88%2Fgithub-actions-workflow/lists"}