diff --git a/.github/workflows/custom-action.yml b/.github/workflows/custom-action.yml index 7a87b53f1..9be5df1eb 100644 --- a/.github/workflows/custom-action.yml +++ b/.github/workflows/custom-action.yml @@ -1,3 +1,4 @@ +name: github-first-exercise on: [push] jobs: diff --git a/github-actions/templates/multi-event.yml b/.github/workflows/multi-event.yml similarity index 76% rename from github-actions/templates/multi-event.yml rename to .github/workflows/multi-event.yml index a3275be38..18ad85d21 100644 --- a/github-actions/templates/multi-event.yml +++ b/.github/workflows/multi-event.yml @@ -1,8 +1,10 @@ +name: github-first-exercise-1 on: push: branches: - main - dev + - development pull_request: branches: - main @@ -11,7 +13,7 @@ jobs: hello_world: runs-on: ubuntu-latest steps: - - name: "Echo Basic Information" + - name: "Echo Basic Informations....!" run: | echo "REF: $GITHUB_REF" echo "Job ID: $GITHUB_JOB"