Skip to content

dataquest-dev/gh-actions

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 

Repository files navigation

gh-actions

Shared GitHub Actions for the dataquest-dev organization.

Repository: dataquest-dev/gh-actions

Available Actions

Action Description Usage
start Automatically adds a label to newly created issues dataquest-dev/gh-actions/start@main

start

Adds the needs-planning label to every newly opened issue. Creates the label in the repository if it doesn't exist yet.

Usage in other repositories

Create .github/workflows/auto-label.yml in each repository:

name: Auto Label New Issues

on:
  issues:
    types: [opened]

jobs:
  label-issue:
    runs-on: ubuntu-latest
    permissions:
      issues: write

    steps:
      - name: Auto Label
        uses: dataquest-dev/gh-actions/start@main
        with:
          github-token: ${{ secrets.GITHUB_TOKEN }}

Inputs

Input Required Description
github-token yes GitHub token for API access

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors