Skip to content

Concurrency 3.1 integration with Jakarta Data #72

Concurrency 3.1 integration with Jakarta Data

Concurrency 3.1 integration with Jakarta Data #72

Workflow file for this run

# This workflow will apply a label to new issues under certain conditions.
name: Label Opened Issues Workflow
# Run workflow when a new issue is opened
on:
issues:
types:
- opened
#- edited
jobs:
check_issue_creator_status:
runs-on: ubuntu-latest
name: A job to check status of issue creator
steps:
# Comment out to debug.
#- name: Print the GitHub event
# run: echo "$GITHUB_CONTEXT"
# env:
# GITHUB_CONTEXT: ${{ toJson(github) }}
- name: Add label to the new issue
uses: actions-ecosystem/action-add-labels@v1
if: ${{ github.event.issue.author_association == 'NONE' }}
with:
labels: "Opened by external contributor"