Skip to content

williamfzc/srctag-action

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Repository files navigation

srctag-action

Tell about the impacts of your PullRequests. By networking your source files and issues.

Example

After the GitHub Action is executed, the srctag-action will automatically add a comment to your pull request.

The comment will display the number of modified files, the relevant issue count, and information about potentially affected files.

image

williamfzc/srctag#4 (comment)

Installation

1. Install GitHub App

https://github.com/apps/srctag

2. Add GitHub Action

name: srctag
on:
  pull_request:
    branches:
      - '*'

jobs:
  srctag_test:
    runs-on: ubuntu-latest
    name: srctag test
    steps:
      - name: Checkout
        uses: actions/checkout@v3
        with:
          fetch-depth: 0

      - name: srctag
        uses: williamfzc/srctag-action@main

3. Run and check the comment

License

Apache2.0