date created: Thursday, May 1st 2025, 8:13:46 am
date modified: Friday, June 27th 2025, 5:31:59 am
tags:
- github-actions
- github
title: What are GitHub Actions?
permalink: what-are-github-actions
Create a directory for your actions in your project.
mkdir -p .github/workflows
Get the current repo name, excluding its owner. For example, owner-name/repo-name
becomes simply repo-name
.
REPO_NAME="${GITHUB_REPOSITORY#*/}"