Skip to content

Warning

You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?

Issue comment tag

Actions
Tag a team in an issue comment
v0.1.0
Verified creator
Star (5)

Verified

GitHub has manually verified the creator of the action as an official partner organization. For more info see About badges in GitHub Marketplace.

github-action-issue-comment-tag

Tag a user or a team in an issue comment

Sometimes you want to tag a team or multiple persons when an issue (or something else) is created. This action will help you do that by tagging them in an issue.

Usage:

  - uses: rajbos/github-action-issue-comment-tag
    with:
      team: < insert team or user name >
      issue: ${{ github.issue.number }}
      owner: ${{ github.repository_owner }}
      repo: ${{ github.repository_name }}
      GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Example workflow:

on:
  issues:
    types: [opened]
    
jobs:
  tag-a-user:
    runs-on: ubuntu-latest
    steps: 
      - uses: rajbos/github-action-issue-comment-tag
        name: Tag a user or team in an issue comment
        with: 
          issue: ${{ github.issue.number }}
          team: < insert team or user name >
          owner: ${{ github.repository_owner }}
          repo: ${{ github.repository_name }}
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Issue comment tag is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.

About

Tag a team in an issue comment
v0.1.0

Verified

GitHub has manually verified the creator of the action as an official partner organization. For more info see About badges in GitHub Marketplace.

Issue comment tag is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.