Skip to content

Commit

Permalink
Create CI.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
gregyjames authored Apr 27, 2024
1 parent bf1630b commit fb1529d
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/blank.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# This is a basic workflow to help you get started with Actions

name: CI

# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the "main" branch
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
convert_to_lowercase:
runs-on: ubuntu-latest
steps:
- name: Convert repository name to lowercase
id: lowercase
run: echo "lowercase_repo=${{ github.repository }}". | tr '[:upper:]' '[:lower:]'
- name: Use the lowercase repository name
run: echo "The lowercase repository name is ${{ steps.lowercase.outputs.lowercase_repo }}"

0 comments on commit fb1529d

Please sign in to comment.