From 2b6e94f88a644d2407bdfb3caae89ca444104a59 Mon Sep 17 00:00:00 2001 From: Vaibhav Singhal Date: Thu, 1 Feb 2024 18:03:39 +0000 Subject: [PATCH] delete workflows in artifacts-outputs branch --- .github/workflows/github-actions-demo.yml | 18 ------------------ .github/workflows/learn-github-actions.yml | 13 ------------- .github/workflows/manual-actions.yml | 10 ---------- README.md | 5 ++++- 4 files changed, 4 insertions(+), 42 deletions(-) delete mode 100644 .github/workflows/github-actions-demo.yml delete mode 100644 .github/workflows/learn-github-actions.yml delete mode 100644 .github/workflows/manual-actions.yml diff --git a/.github/workflows/github-actions-demo.yml b/.github/workflows/github-actions-demo.yml deleted file mode 100644 index 15a61d6..0000000 --- a/.github/workflows/github-actions-demo.yml +++ /dev/null @@ -1,18 +0,0 @@ -name: GitHub Actions Demo -run-name: ${{ github.actor }} is testing out GitHub Actions 🚀 -on: [push] -jobs: - Explore-GitHub-Actions: - runs-on: ubuntu-latest - steps: - - run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event." - - run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!" - - run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}." - - name: Check out repository code - uses: actions/checkout@v4 - - run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner." - - run: echo "🖥️ The workflow is now ready to test your code on the runner." - - name: List files in the repository - run: | - ls ${{ github.workspace }} - - run: echo "🍏 This job's status is ${{ job.status }}." diff --git a/.github/workflows/learn-github-actions.yml b/.github/workflows/learn-github-actions.yml deleted file mode 100644 index 8fc224c..0000000 --- a/.github/workflows/learn-github-actions.yml +++ /dev/null @@ -1,13 +0,0 @@ -name: learn-github-actions -run-name: ${{ github.actor }} is learning GitHub Actions -on: [push] -jobs: - check-bats-version: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-node@v3 - with: - node-version: '14' - - run: npm install -g bats - - run: bats -v diff --git a/.github/workflows/manual-actions.yml b/.github/workflows/manual-actions.yml deleted file mode 100644 index 60a1646..0000000 --- a/.github/workflows/manual-actions.yml +++ /dev/null @@ -1,10 +0,0 @@ -name: First Workflow -on: workflow_dispatch -jobs: - first-job: - runs-on: ubuntu-latest - steps: - - name: Print Greeting - run: echo "Hello World!" - - name: Print Goodbye - run: echo "Done - bye!" \ No newline at end of file diff --git a/README.md b/README.md index a49abd0..97f2199 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,7 @@ # learn-github-actions -Github Actions - ![Github Actions Key Components](./images/github-actions-key-components.png) + +- [Github Hosted Runners](https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners/about-github-hosted-runners#supported-software) +- [Runners Pre-installed Softwares](https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners/about-github-hosted-runners#using-preinstalled-software) +- [Github Actions Workflow syntax](https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions) \ No newline at end of file