Skip to content

Commit

Permalink
chore(ci.yml): fix file extension from .yaml to .yml for consistency
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
cybersiddhu committed Aug 17, 2023
1 parent 606c8f7 commit acd71ca
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/create-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/testcov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down

0 comments on commit acd71ca

Please sign in to comment.