{"id":20885741,"url":"https://github.com/gabel/skills-hello-github-actions","last_synced_at":"2026-02-02T19:36:04.431Z","repository":{"id":217279014,"uuid":"743465256","full_name":"gabel/skills-hello-github-actions","owner":"gabel","description":"My clone repository","archived":false,"fork":false,"pushed_at":"2025-10-01T14:06:11.000Z","size":20,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-11T05:55:48.591Z","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/gabel.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}},"created_at":"2024-01-15T09:49:01.000Z","updated_at":"2024-01-15T09:49:01.000Z","dependencies_parsed_at":"2024-01-15T13:16:33.309Z","dependency_job_id":"6bac07fe-3f38-4eff-b874-2fa46b473cfd","html_url":"https://github.com/gabel/skills-hello-github-actions","commit_stats":null,"previous_names":["gabel/skills-hello-github-actions"],"tags_count":0,"template":false,"template_full_name":"skills/hello-github-actions","purl":"pkg:github/gabel/skills-hello-github-actions","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gabel%2Fskills-hello-github-actions","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gabel%2Fskills-hello-github-actions/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gabel%2Fskills-hello-github-actions/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gabel%2Fskills-hello-github-actions/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gabel","download_url":"https://codeload.github.com/gabel/skills-hello-github-actions/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gabel%2Fskills-hello-github-actions/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29018087,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-02T18:51:31.335Z","status":"ssl_error","status_checked_at":"2026-02-02T18:49:20.777Z","response_time":58,"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-11-18T08:14:20.966Z","updated_at":"2026-02-02T19:36:04.399Z","avatar_url":"https://github.com/gabel.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 2 \u003e\u003e\u003e\n  Start this step by acknowledging the previous step.\n  Define terms and link to docs.github.com.\n  Historic note: The previous course had troubleshooting steps for people not using the GitHub UI.\n--\u003e\n\n## Step 2: Add a job to your workflow file\n\n_Nice work! :tada: You added a workflow file!_\n\nHere's what it means:\n\n- `name: Post welcome comment` gives your workflow a name. This name appears on any pull request or in the Actions tab of your repository.\n- `on: pull_request: types: [opened]` indicates that your workflow will execute anytime a pull request opens in your repository.\n- `permissions` assigns the workflow permissions to operate on the repository\n- `pull-requests: write` gives the workflow permission to write to pull requests. This is needed to create the welcome comment.\n\nNext, we need to specify jobs to run.\n\n**What is a _job_?**: A job is a set of steps in a workflow that execute on the same runner (a runner is a server that runs your workflows when triggered). Workflows have jobs, and jobs have steps. Steps are executed in order and are dependent on each other. We'll add steps in the next step of this exercise. To read more about jobs, see \"[Jobs](https://docs.github.com/en/actions/learn-github-actions/understanding-github-actions#jobs)\".\n\nIn this step of our exercise, we will add a \"build\" job. We will specify `ubuntu-latest` as the fastest and cheapest job runner available. If you want to read more about why we'll use that runner, see the code explanation for the line `runs-on: ubuntu-latest` in the \"[Understanding the workflow file](https://docs.github.com/en/actions/learn-github-actions/understanding-github-actions#understanding-the-workflow-file)\" article.\n\n### :keyboard: Activity: Add a job to your workflow file\n\n1. Open your `welcome.yml` file.\n2. Update the contents of the file to:\n   ```yaml\n   name: Post welcome comment\n   on:\n     pull_request:\n       types: [opened]\n   permissions:\n     pull-requests: write\n   jobs:\n     build:\n       name: Post welcome comment\n       runs-on: ubuntu-latest\n   ```\n3. Click **Start commit** in the top right of the workflow editor.\n4. Type your commit message and commit your changes directly to your branch.\n5. 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/orgs/skills/discussions/categories/hello-github-actions) \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%2Fgabel%2Fskills-hello-github-actions","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgabel%2Fskills-hello-github-actions","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgabel%2Fskills-hello-github-actions/lists"}