From acd71ca413197544b207e0c0a280bc87a1ad808f Mon Sep 17 00:00:00 2001 From: Siddhartha Basu Date: Thu, 17 Aug 2023 15:25:45 -0500 Subject: [PATCH] chore(ci.yml): fix file extension from .yaml to .yml for consistency The file extensions of the workflow files have been changed from .yaml to .yml for consistency. This ensures that all workflow files in the repository have the same file extension, making it easier to manage and maintain the workflows. --- .github/workflows/ci.yml | 2 +- .github/workflows/create-pull-request.yml | 2 +- .github/workflows/lint.yml | 2 +- .github/workflows/testcov.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0b99045..505ea00 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,7 +5,7 @@ on: - develop jobs: call-testcov: - uses: dictyBase/workflows/.github/workflows/golang-testcov.yaml@develop + uses: dictyBase/workflows/.github/workflows/golang-testcov.yml@develop secrets: inherit with: repository: ${{ github.repository }} diff --git a/.github/workflows/create-pull-request.yml b/.github/workflows/create-pull-request.yml index 5e2e796..ea4e304 100644 --- a/.github/workflows/create-pull-request.yml +++ b/.github/workflows/create-pull-request.yml @@ -2,7 +2,7 @@ name: Create Pull Request on: create jobs: call-pull-request: - uses: dictyBase/workflows/.github/workflows/create-pull-request.yaml@develop + uses: dictyBase/workflows/.github/workflows/create-pull-request.yml@develop secrets: inherit with: repository: ${{ github.repository }} diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index cd13a37..8f88871 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -5,7 +5,7 @@ on: - master jobs: call-lint: - uses: dictyBase/workflows/.github/workflows/golang-lint.yaml@develop + uses: dictyBase/workflows/.github/workflows/golang-lint.yml@develop secrets: inherit with: repository: ${{ github.repository }} diff --git a/.github/workflows/testcov.yml b/.github/workflows/testcov.yml index 9084f5d..e7f6628 100644 --- a/.github/workflows/testcov.yml +++ b/.github/workflows/testcov.yml @@ -2,7 +2,7 @@ name: Test coverage on: pull_request jobs: call-testcov: - uses: dictyBase/workflows/.github/workflows/golang-testcov.yaml@develop + uses: dictyBase/workflows/.github/workflows/golang-testcov.yml@develop secrets: inherit with: repository: ${{ github.repository }}