OPEN TO WORK

Available for new opportunities! Let's build something amazing together.

Adding or deleting GitHub project (classic) labels on issues

GitHub GitHub Actions
post

This post is over a year old, some of this information may be out of date.

Since projects got added to GitHub, I started using it more and more. For Front Matter, I am using projects to manage its releases. Before projects, I used milestones, but with projects, it is easier to follow up on what things I still need to do before the release.

Show image GitHub Project example from Front Matter
GitHub Project example from Front Matter

One thing I was missing was a sort of label in the issue list to easily spot which issues were already added to a project release.

To enhance my experience on GitHub, I went on the journey to find out if it was possible with GitHub Actions.

Getting the event type and project data

To label the issue, what I needed to know were two things:

  1. The event type. Was the issue added to or deleted from the project;
  2. The name of the project.

The event type can be retrieved from the github.event.action environment variable. In the case for my actions, I configured it to trigger on project_card with the [created, moved, deleted] types.

The project name is a bit trickier as it is not passed as an environment variable. You will have to do an API call to get the project name. The API is provided by the github.event.project_card.project_url environment variable. In my case, the variable its value is: https://api.github.com/projects/14468471.

Via a CURL command execution, you can receive this information.

- name: Fetch project data
run: |
echo 'PROJECT_DATA<<EOF' >> $GITHUB_ENV
curl --request GET --url '${{ github.event.project_card.project_url }}' --header 'Authorization: token ${{ secrets.GITHUB_TOKEN }}' >> $GITHUB_ENV
echo 'EOF' >> $GITHUB_ENV

Once you have the name, all you need is to use the Simple Issue Labeler action to add or remove your project labels.

Here you can see the whole GitHub workflow:

name: Project labelling
on:
project_card:
types: [created, moved, deleted]
jobs:
automate-issues-labels:
runs-on: ubuntu-latest
steps:
- name: Fetch project data
run: |
echo 'PROJECT_DATA<<EOF' >> $GITHUB_ENV
curl --request GET --url '${{ github.event.project_card.project_url }}' --header 'Authorization: token ${{ secrets.GITHUB_TOKEN }}' >> $GITHUB_ENV
echo 'EOF' >> $GITHUB_ENV
- name: Add the project label
uses: andymckay/labeler@master
if: ${{ contains(github.event.action, 'created') || contains(github.event.action, 'moved') }}
with:
add-labels: "Project: ${{ fromJSON(env.PROJECT_DATA).name }}"
- name: Remove the project label
uses: andymckay/labeler@master
if: ${{ contains(github.event.action, 'deleted') }}
with:
remove-labels: "Project: ${{ fromJSON(env.PROJECT_DATA).name }}"

When you add or remove your issues to a project, the labels will now be automatically added or removed.

Show image Project labelling for issues
Project labelling for issues

Related articles

Report issues or make changes on GitHub

Found a typo or issue in this article? Visit the GitHub repository to make changes or submit a bug report.

Comments

Elio Struyf

Solutions Architect & Developer Expert

Loading...

Let's build together

Manage content in VS Code

Present from VS Code