Skip to content

Releases: bdougie/take-action

fix: removed unnecessary guard for no blocking labels

19 Oct 11:54
1439165
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.6...v1.6.1

Blocking labels

19 Oct 00:57
991e8e7
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1.5...v1.6

Updates to Token

24 Mar 12:05
52b3bb9
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1.4...v1.5

More customization enabled

09 Jun 12:01
5a7a7d6
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1.3...v1.4

v1.3 Action will not assign user if another user is assigned

04 Jan 21:20
c77267b
Compare
Choose a tag to compare

What's Changed

  • fix: Action will not assign user if another user is assigned by @blackgirlbytes in #6

New Contributors

Full Changelog: v1.2...v1.3

New feature: Adds commenting feature

12 Jul 19:22
67f0766
Compare
Choose a tag to compare

You can now add an optional message to comment on the issue someone assigns themselves to.

# .github/workflows/take.yml 
name: Assign issue to contributor
on: 
  issue_comment:

jobs:
  assign:
    name: Take an issue
    runs-on: ubuntu-latest
    steps:
    - name: take the issue
      uses: bdougie/take-action@main
      env:
        GITHUB_TOKEN: ${{ github.token }}
      with:
        message: Thanks for taking this issue! Let us know if you have any questions!

Using the Composite Run feature

22 Sep 22:47
1735275
Compare
Choose a tag to compare

This actually fixes the error

22 Sep 22:30
bde1ccf
Compare
Choose a tag to compare

The error was inside the house the whole time.

Actually fixes error

20 Sep 06:42
Compare
Choose a tag to compare

Turns out that the fix was due to the ISSUE_NUMBER being inserted into the URL as a string and not a number.

80600b0

Bug fix that removes swallowed error messages

20 Sep 05:53
74d728d
Compare
Choose a tag to compare

Noticed that Action logs were not showing failures. This looks like it was failing due to the non-escaped return.