{"id":18933350,"url":"https://github.com/synap5e/hello-github-actions","last_synced_at":"2026-03-19T07:12:43.060Z","repository":{"id":188153166,"uuid":"678198045","full_name":"synap5e/hello-github-actions","owner":"synap5e","description":null,"archived":false,"fork":false,"pushed_at":"2023-10-01T09:06:32.000Z","size":23,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-12-31T20:42:55.187Z","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":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/synap5e.png","metadata":{"files":{"readme":"README.md","changelog":null,"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}},"created_at":"2023-08-14T01:51:27.000Z","updated_at":"2023-08-14T01:51:28.000Z","dependencies_parsed_at":null,"dependency_job_id":"9cc4e59d-ea0d-4514-90a8-433748ad210e","html_url":"https://github.com/synap5e/hello-github-actions","commit_stats":null,"previous_names":["synap5e/hello-github-actions"],"tags_count":0,"template":false,"template_full_name":"skills/hello-github-actions","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/synap5e%2Fhello-github-actions","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/synap5e%2Fhello-github-actions/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/synap5e%2Fhello-github-actions/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/synap5e%2Fhello-github-actions/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/synap5e","download_url":"https://codeload.github.com/synap5e/hello-github-actions/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239933067,"owners_count":19720728,"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-11-08T11:54:14.303Z","updated_at":"2026-01-27T23:42:18.504Z","avatar_url":"https://github.com/synap5e.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cheader\u003e\n\n\u003c!--\n  \u003c\u003c\u003c Author notes: Course header \u003e\u003e\u003e\n  Include a 1280x640 image, course title in sentence case, and a concise description in emphasis.\n  In your repository settings: enable template repository, add your 1280x640 social image, auto delete head branches.\n  Add your open source license, GitHub uses MIT license.\n--\u003e\n\n# Hello GitHub Actions\n\n_Create a GitHub Action and use it in a workflow._\n\n\u003c/header\u003e\n\n\u003c!--\n  \u003c\u003c\u003c Author notes: Step 1 \u003e\u003e\u003e\n  Choose 3-5 steps for your course.\n  The first step is always the hardest, so pick something easy!\n  Link to docs.github.com for further explanations.\n  Encourage users to open new tabs for steps!\n--\u003e\n\n## Step 1: Create a workflow file\n\n_Welcome to \"Hello GitHub Actions\"! :wave:_\n\n**What is _GitHub Actions_?**: GitHub Actions is a flexible way to automate nearly every aspect of your team's software workflow. You can automate testing, continuously deploy, review code, manage issues and pull requests, and much more. The best part, these workflows are stored as code in your repository and easily shared and reused across teams. To learn more, check out these resources:\n\n- The GitHub Actions feature page, see [GitHub Actions](https://github.com/features/actions).\n- The \"GitHub Actions\" user documentation, see [GitHub Actions](https://docs.github.com/actions).\n\n**What is a _workflow_?**: A workflow is a configurable automated process that will run one or more jobs. Workflows are defined in special files in the `.github/workflows` directory and they execute based on your chosen event. For this exercise, we'll use a `pull_request` event.\n\n- To read more about workflows, jobs, and events, see \"[Understanding GitHub Actions](https://docs.github.com/en/actions/learn-github-actions/understanding-github-actions)\".\n- If you want to learn more about the `pull_request` event before using it, see \"[pull_request](https://docs.github.com/en/developers/webhooks-and-events/webhooks/webhook-events-and-payloads#pull_request)\".\n\nTo get you started, we used actions to go ahead and made a branch and pull request for you.\n\n### :keyboard: Activity: Create a workflow file\n\n1. Open a new browser tab, and navigate to this same repository. Then, work on the steps in your second tab while you read the instructions in this tab.\n1. Create a pull request to view all the changes you'll make throughout this course. Click the **Pull Requests** tab, click **New pull request**, set `base: main` and `compare:welcome-workflow`, click **Create pull request**.\n1. Navigate to the **Code** tab.\n1. From the **main** branch dropdown, click on the **welcome-workflow** branch.\n1. Navigate to the `.github/workflows/` folder, then select **Add file** and click on **Create new file**.\n1. In the **Name your file...** field, enter `welcome.yml`.\n1. Add the following content to the `welcome.yml` file:\n   ```yaml\n   name: Post welcome comment\n   on:\n     pull_request:\n       types: [opened]\n   permissions:\n     pull-requests: write\n   ```\n1. To commit your changes, click **Commit new file**.\n1. Wait about 20 seconds for actions to run, then refresh this page (the one you're following instructions from) and an action will automatically close this step and open the next one.\n\n\u003cfooter\u003e\n\n\u003c!--\n  \u003c\u003c\u003c Author notes: Footer \u003e\u003e\u003e\n  Add a link to get support, GitHub status page, code of conduct, license link.\n--\u003e\n\n---\n\nGet help: [Post in our discussion board](https://github.com/skills/.github/discussions) \u0026bull; [Review the GitHub status page](https://www.githubstatus.com/)\n\n\u0026copy; 2023 GitHub \u0026bull; [Code of Conduct](https://www.contributor-covenant.org/version/2/1/code_of_conduct/code_of_conduct.md) \u0026bull; [MIT License](https://gh.io/mit)\n\n\u003c/footer\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsynap5e%2Fhello-github-actions","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsynap5e%2Fhello-github-actions","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsynap5e%2Fhello-github-actions/lists"}