{"id":19594231,"url":"https://github.com/julioaranajr/github-actions-example","last_synced_at":"2026-05-12T21:07:05.854Z","repository":{"id":93961875,"uuid":"549593516","full_name":"julioaranajr/GitHub-Actions-Example","owner":"julioaranajr","description":"In this repository, you'll add a workflow that demonstrates some of the essential  features of GitHub Actions.","archived":false,"fork":false,"pushed_at":"2023-01-24T16:14:59.000Z","size":73,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-09T07:12:48.346Z","etag":null,"topics":["github","github-actions"],"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/julioaranajr.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":"2022-10-11T12:33:06.000Z","updated_at":"2024-06-15T14:15:54.000Z","dependencies_parsed_at":"2023-03-05T17:45:14.999Z","dependency_job_id":null,"html_url":"https://github.com/julioaranajr/GitHub-Actions-Example","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julioaranajr%2FGitHub-Actions-Example","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julioaranajr%2FGitHub-Actions-Example/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julioaranajr%2FGitHub-Actions-Example/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julioaranajr%2FGitHub-Actions-Example/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/julioaranajr","download_url":"https://codeload.github.com/julioaranajr/GitHub-Actions-Example/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240867750,"owners_count":19870469,"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":["github","github-actions"],"created_at":"2024-11-11T08:42:39.838Z","updated_at":"2026-05-12T21:07:00.820Z","avatar_url":"https://github.com/julioaranajr.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# GitHub-Actions-Example\n## Quickstart for GitHub Actions\n    Try out the features of GitHub Actions in 5 minutes or less.\n\n## Introduction\n\n    You only need a GitHub repository to create and run a GitHub Actions workflow. \n    \n    In this guide, you'll add a workflow that demonstrates some of the essential \n    features of GitHub Actions.\n\n    The following example shows you how GitHub Actions jobs can be automatically \n    triggered, where they run, and how they can interact with the code in your \n    repository.\n\n## Creating your first workflow\n\n    1.- Create a .github/workflows directory in your repository on GitHub if this directory does not already exist.\n\n    2.- In the .github/workflows directory, create a file named github-actions-demo.yml.\n\n    3.- Copy the following YAML contents into the github-actions-demo.yml file:\n```yaml\nname: GitHub Actions Demo\nrun-name: ${{ github.actor }} is testing out GitHub Actions 🚀\non: [push]\njobs:\n  Explore-GitHub-Actions:\n    runs-on: ubuntu-latest\n    steps:\n      - run: echo \"🎉 The job was automatically triggered by a ${{ github.event_name }} event.\"\n      - run: echo \"🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!\"\n      - run: echo \"🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}.\"\n      - name: Check out repository code\n        uses: actions/checkout@v3\n      - run: echo \"💡 The ${{ github.repository }} repository has been cloned to the runner.\"\n      - run: echo \"🖥️ The workflow is now ready to test your code on the runner.\"\n      - name: List files in the repository\n        run: |\n          ls ${{ github.workspace }}\n      - run: echo \"🍏 This job's status is ${{ job.status }}.\"\n```\n\n4.- Scroll to the bottom of the page and select Create a new branch for this commit and start a pull request. Then, to create a pull request, click Propose new file.\n\n![Screenshot](https://github.com/julioaranajr/GitHub-Actions-Example/blob/main/commit-new-file.png)\n\nCommitting the workflow file to a branch in your repository triggers the push event and runs your workflow.\n\n# Viewing your workflow results\n\n1.- On GitHub.com, navigate to the main page of the repository.\n\n2.- Under your repository name, click Actions.\n\n3.- In the left sidebar, click the workflow you want to see.\n\n4.- From the list of workflow runs, click the name of the run you want to see.\n\n5.- Under Jobs , click the Explore-GitHub-Actions job.\n\n6.- The log shows you how each of the steps was processed. \n    Expand any of the steps to view its details.\n\n    For example, you can see the list of files in your repository:\n\n    The example workflow you just added is triggered each time code is pushed to the branch, \n    and shows you how GitHub Actions can work with the contents of your repository. \n\nFor an in-depth tutorial, see [\"Understanding GitHub Actions.\"](https://docs.github.com/en/actions/learn-github-actions/understanding-github-actions)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjulioaranajr%2Fgithub-actions-example","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjulioaranajr%2Fgithub-actions-example","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjulioaranajr%2Fgithub-actions-example/lists"}