Giter VIP home page Giter VIP logo

github-action-project-changelog's Introduction

CI

github-action-project-changelog

GitHub action to create an issue containing a list of project cards according with the project column name specified.

Inputs

input required default description
columns yes Project column names separated by comma.
project-beta-number yes Project beta number.
organization yes Organization name.
template no "{{title}} {{#if assignees }} by {{assignees}} {{/if}} {{#if number}} in [#{{number}}]({{url}}) {{/if}}" Handlebar template to generate markdown.

Output

The output of this action is an new issue containing all cards given the project column.

Settings

You have two ways to configure this action.

1) Creating a Github application

You need to create a GitHub application under your organization with the following permissions:

Repository Permissions:

  • pull-requests: read
  • issues: read/write

Organization Permissions

  • members: read
  • projects: read

Copy the Private key and App id from the application created.

Go to your repository and create two secrets:

  • GH_APP_PRIVATE_KEY
  • GH_APP_ID

Install the application in your organization. This is necessary to generate the token that grants permissions to perform the actions.

Workflow configured with Github app tokens:

name: changelog
on:
  workflow_dispatch:
jobs:
  run:
    runs-on: ubuntu-latest
    permissions:
      contents: write
      organization: read
    steps:
      - uses: actions/checkout@v2
      - uses: actions/setup-node@v2
        with:
          node-version-file: '.nvmrc'
      - name: Generate token
        id: generate_token
        uses: tibdex/github-app-token@v1
        with:
          app_id: ${{ secrets.GH_APP_ID }}
          private_key: ${{ secrets.GH_APP_PRIVATE_KEY }}
      - name: Creating an issue action
        uses: nearform-actions/github-action-project-changelog@v1
        id: changelog
        with:
          columns: #todo, in progress
          organization: #fake organization
          project-beta-number: #1
        env:
          GH_TOKEN: ${{ steps.generate_token.outputs.token }}

2) Creating a PAT (personal access token)

You can also configure this action by creating a PAT with the following permissions:

  • repo: all
  • admin:org -> read:org

Create the following secret in your repository

  • GH_CHANGELOG_PAT

Workflow configured with your PAT:

name: changelog
on:
  workflow_dispatch:
jobs:
  run:
    runs-on: ubuntu-latest
    permissions:
      contents: write
      organization: read
    steps:
      - uses: actions/checkout@v2
      - uses: actions/setup-node@v2
        with:
          node-version-file: '.nvmrc'
      - name: Creating an issue action
        uses: nearform-actions/github-action-project-changelog@v1
        id: changelog
        with:
          columns: #todo, in progress
          organization: #fake organization
          project-beta-number: #1
        env:
          GH_TOKEN: ${{ secrets.GH_CHANGELOG_PAT }}

Standard Usage

Configure the workflow:

name: changelog
on:
  workflow_dispatch:
jobs:
  run:
    runs-on: ubuntu-latest
    permissions:
      contents: write
      organization: read
    steps:
      - uses: actions/checkout@v2
      - uses: actions/setup-node@v2
        with:
          node-version-file: '.nvmrc'
      - name: Generate token
        id: generate_token
        uses: tibdex/github-app-token@v1
        with:
          app_id: ${{ secrets.GH_APP_ID }}
          private_key: ${{ secrets.GH_APP_PRIVATE_KEY }}
      - name: Creating an issue action
        uses: nearform-actions/github-action-project-changelog@v1
        id: changelog
        with:
          columns: #todo, in progress
          organization: #fake organization
          project-beta-number: #1
        env:
          GH_TOKEN: ${{ steps.generate_token.outputs.token }}

You can also specify a template input written in handlebars to be used to create a card list in markdown. The following properties can be used to define a template:

  • url: issue url or pull request url
  • assignees: card assignees
  • number: issue number or pull request number
  • title: card title

Example:

name: changelog
on:
  workflow_dispatch:
jobs:
  run:
    runs-on: ubuntu-latest
    permissions:
      contents: write
      organization: read
    steps:
      ...
      - name: Creating an issue action
        uses: nearform-actions/github-action-project-changelog@v1
        id: changelog
        with:
          columns: #todo, in progress
          organization: #fake organization
          project-beta-number: #1
          template: "{{title}} {{#if assignees }} by {{assignees}} {{/if}} {{#if number}} in [#{{number}}]({{url}}) {{/if}}"
        env:
          GH_TOKEN: ${{ steps.generate_token.outputs.token }}

As alternative you can configure the workflow to get all inputs dynamically.

Example to get columns dynamically:

name: changelog
on:
  workflow_dispatch:
    inputs:
      columns:
        type: string
        description: 'Project beta columns'
        required: true
jobs:
  run:
    runs-on: ubuntu-latest
    permissions:
      contents: write
      organization: read
    steps:
      ...
      - name: Creating an issue action
        uses: nearform-actions/github-action-project-changelog@v1
        id: changelog
        with:
          organization: # organization name
          project-beta-number: #project beta number
          columns: ${{ github.event.inputs.columns }}
        env:
          GH_TOKEN: ${{ steps.generate_token.outputs.token }}

github-action-project-changelog's People

Contributors

dependabot[bot] avatar optic-release-automation[bot] avatar ramonmulia avatar p16 avatar gregoryduckworth avatar melkornemesis avatar anapaulalemos avatar davideroffo avatar grantmorrison avatar guilhermelimak avatar krisgrint avatar marco-ippolito avatar ilteoood avatar bredikhin avatar sameer-coder avatar simoneb avatar washingtonsoares avatar

Stargazers

Thomas Harr avatar Nikita avatar

Watchers

 avatar Andrea Campolonghi avatar Pablo Santos avatar  avatar Ionuț Florescu Țicleanu avatar Gustavo Caldeira avatar Vladimir Adamić avatar James Cloos avatar Paul Negrutiu avatar cianomaidin avatar  avatar Rômulo Vitoi avatar Mauro Murru avatar Ericsson de Oliveira avatar Claudia Donea avatar Danijel Maksimovic avatar Steve Herzog avatar Jhonantans Moraes Rocha avatar Aled Jones avatar  avatar Iago Banov avatar  avatar Joseph Hurtado avatar Fahri Cavusoglu avatar Ryan Park avatar Thomas Treffry avatar franceto avatar Catalin Fira avatar Matteo Bacci avatar Jeronimo Lopez avatar Aman Ramkumar avatar Kristina D. avatar Damián Peralta Mariñelarena avatar Fabio de Lima Rodriguez avatar Bruno Amaral avatar Tomasz Krzyżowski avatar Jamie Bohanna avatar Norbert Nagy avatar Kostas Georgiou avatar  avatar

github-action-project-changelog's Issues

Release pending!

Pending commits since release v1.0.18

Based on the following commits, a patch release is recommended.

Unreleased commits have been found which are pending release, please publish the changes.

  • 2cab04d build(deps): bump actions-toolkit from `396b0f1` to `0bd29df` (#201)
  • 294406d build(deps-dev): bump lint-staged from 13.1.1 to 13.1.2 (#200)
  • ee545b5 build(deps-dev): bump @commitlint/cli from 17.4.2 to 17.4.3 (#198)
  • d7aaff6 build(deps-dev): bump eslint from 8.33.0 to 8.34.0 (#197)
  • d8814f4 build(deps): bump actions-toolkit from `a880413` to `396b0f1` (#199)
  • aabba0a build(deps-dev): bump @commitlint/config-conventional (#196)
  • 966a3c5 build(deps): bump actions-toolkit from `d06c29a` to `a880413` (#195)

If you close the issue as Not Planned

  • The notification will be snoozed for 7 days, starting when the issue is closed. After this period has passed, a new notification issue will be created the next time this action is run.

Issue generated by github-actions-notify-release.

Release pending!

Pending commits since release v1.0.24

Based on the following commits, a patch release is recommended.

Unreleased commits have been found which are pending release, please publish the changes.

  • c29f539 build(deps): bump actions-toolkit from `2151679` to `a262b95` (#261)
  • 4003965 build(deps-dev): bump eslint from 8.38.0 to 8.39.0 (#260)
  • ecab7ce build(deps-dev): bump prettier from 2.8.7 to 2.8.8 (#259)
  • 0f69409 build(deps): bump actions-toolkit from `e3602a2` to `2151679` (#258)
  • 77509f9 docs: improve documentation format (#257)
  • 9c748a8 build(deps-dev): bump @commitlint/config-conventional (#253)
  • e4fe813 build(deps): bump actions-toolkit from `d0d9bc9` to `e3602a2` (#255)
  • 877a887 build(deps-dev): bump @commitlint/cli from 17.6.0 to 17.6.1 (#254)

If you close the issue as Not Planned

  • The notification will be snoozed for 7 days, starting when the issue is closed. After this period has passed, a new notification issue will be created the next time this action is run.

Issue generated by github-actions-notify-release.

Release pending!

Pending commits since release v1.0.31

Based on the following commits, a patch release is recommended.

Unreleased commits have been found which are pending release, please publish the changes.

  • 1de059d build(deps): bump actions-toolkit from `6f90a66` to `1ba2ffc` (#313)
  • 3f8b446 build(deps-dev): bump eslint from 8.43.0 to 8.44.0 (#312)

If you close the issue as Not Planned

  • The notification will be snoozed for 7 days, starting when the issue is closed. After this period has passed, a new notification issue will be created the next time this action is run.

Issue generated by github-actions-notify-release.

Release pending!

Pending commits since release v1.0.4

Unreleased commits have been found which are pending release, please publish the changes.

  • f89650c Bump @commitlint/cli from 17.0.1 to 17.0.2 (#80)
  • a5c723f Bump lint-staged from 12.4.3 to 13.0.0 (#79)
  • 513c2e4 Bump @commitlint/config-conventional from 17.0.0 to 17.0.2 (#78)
  • 6d75ad8 Bump lint-staged from 12.4.2 to 12.4.3 (#77)
  • 137ee30 Bump @vercel/ncc from 0.33.4 to 0.34.0 (#76)
  • 1128336 Bump lint-staged from 12.4.1 to 12.4.2 (#75)
  • cfe0658 Bump @commitlint/cli from 17.0.0 to 17.0.1 (#74)

Issue generated by github-actions-notify-release.

Release pending!

Pending commits since release v1.0.34

Based on the following commits, a patch release is recommended.

Unreleased commits have been found which are pending release, please publish the changes.

  • 008482b build(deps-dev): bump @commitlint/cli from 17.7.0 to 17.7.1 (#339)
  • dbb37dc build(deps-dev): bump @commitlint/cli from 17.6.7 to 17.7.0 (#337)
  • 8332ea9 build(deps-dev): bump @commitlint/config-conventional (#336)
  • c1c0ff8 build(deps): bump actions-toolkit from `e1c3329` to `0a4a5a0` (#335)
  • 5508bcf build(deps-dev): bump eslint-config-prettier from 8.10.0 to 9.0.0 (#334)
  • 68f7738 build(deps-dev): bump eslint-config-prettier from 8.9.0 to 8.10.0 (#333)
  • a10bc67 build(deps): bump handlebars from 4.7.7 to 4.7.8 (#331)

If you close the issue as Not Planned

  • The notification will be snoozed for 7 days, starting when the issue is closed. After this period has passed, a new notification issue will be created the next time this action is run.

Issue generated by github-actions-notify-release.

Release pending!

Pending commits since release v1.0.21

Based on the following commits, a patch release is recommended.

Unreleased commits have been found which are pending release, please publish the changes.

  • ddf1055 build(deps): bump actions-toolkit from `b4c7367` to `9697468` (#221)
  • ab22bf3 build(deps): bump actions-toolkit from `571410a` to `b4c7367` (#220)
  • f9626aa build(deps-dev): bump eslint from 8.35.0 to 8.36.0 (#219)
  • a03ab33 build(deps-dev): bump lint-staged from 13.1.2 to 13.2.0 (#218)

If you close the issue as Not Planned

  • The notification will be snoozed for 7 days, starting when the issue is closed. After this period has passed, a new notification issue will be created the next time this action is run.

Issue generated by github-actions-notify-release.

Release pending!

Pending commits since release v1.0.36

Based on the following commits, a patch release is recommended.

Unreleased commits have been found which are pending release, please publish the changes.

  • edde3cf build(deps-dev): bump eslint from 8.48.0 to 8.49.0 (#356)
  • add609e build(deps-dev): bump @vercel/ncc from 0.36.1 to 0.38.0 (#355)
  • d3ee309 build(deps): bump actions-toolkit from `994e8bf` to `be715ca` (#354)
  • d929361 build(deps): bump actions/checkout from 3 to 4 (#353)

If you close the issue as Not Planned

  • The notification will be snoozed for 7 days, starting when the issue is closed. After this period has passed, a new notification issue will be created the next time this action is run.

Issue generated by github-actions-notify-release.

Release pending!

Pending commits since release v1.0.29

Based on the following commits, a patch release is recommended.

Unreleased commits have been found which are pending release, please publish the changes.

  • 780a2bd build(deps): bump @octokit/core from 4.2.1 to 4.2.4 (#297)
  • f7456f4 build(deps): bump actions-toolkit from `25fc2ad` to `55c4dbe` (#299)
  • 8428ab4 build(deps-dev): bump eslint from 8.42.0 to 8.43.0 (#298)
  • cc1dd74 build(deps): bump dotenv from 16.2.0 to 16.3.1 (#296)
  • 5195cbc build(deps): bump dotenv from 16.1.4 to 16.2.0 (#295)
  • 9003185 build(deps): bump actions-toolkit from `ed1c17b` to `25fc2ad` (#294)

If you close the issue as Not Planned

  • The notification will be snoozed for 7 days, starting when the issue is closed. After this period has passed, a new notification issue will be created the next time this action is run.

Issue generated by github-actions-notify-release.

Release pending!

Pending commits since release v1.0.23

Based on the following commits, a patch release is recommended.

Unreleased commits have been found which are pending release, please publish the changes.

  • 4d0c65b build(deps-dev): bump @commitlint/config-conventional (#250)
  • e7ba472 build(deps-dev): bump @commitlint/cli from 17.5.1 to 17.6.0 (#249)
  • ca2e670 build(deps): bump actions-toolkit from `e32d98f` to `d0d9bc9` (#248)
  • 30e77c8 ci: update notify-release action permissions (#247)
  • ad9dd2a build(deps): bump actions-toolkit from `85e3d84` to `e32d98f` (#246)
  • 852b6c8 build(deps): bump actions-toolkit from `066df3a` to `85e3d84` (#245)
  • 3b7a938 build(deps-dev): bump eslint from 8.37.0 to 8.38.0 (#244)
  • 30edd88 build(deps-dev): bump lint-staged from 13.2.0 to 13.2.1 (#243)
  • 1871847 build(deps): bump actions-toolkit from `7053aef` to `066df3a` (#242)

If you close the issue as Not Planned

  • The notification will be snoozed for 7 days, starting when the issue is closed. After this period has passed, a new notification issue will be created the next time this action is run.

Issue generated by github-actions-notify-release.

Release pending!

Pending commits since release v1.0.33

Based on the following commits, a patch release is recommended.

Unreleased commits have been found which are pending release, please publish the changes.

  • 74aa13e build(deps): bump actions-toolkit from `8efe47a` to `e1c3329` (#328)
  • 960ae23 build(deps-dev): bump tap from 16.3.7 to 16.3.8 (#327)
  • 56d0c26 build(deps-dev): bump eslint from 8.45.0 to 8.46.0 (#326)
  • 45d3bfe build(deps-dev): bump eslint-config-prettier from 8.8.0 to 8.9.0 (#325)
  • ab64b50 build(deps): bump actions-toolkit from `5ed80bc` to `8efe47a` (#324)

If you close the issue as Not Planned

  • The notification will be snoozed for 7 days, starting when the issue is closed. After this period has passed, a new notification issue will be created the next time this action is run.

Issue generated by github-actions-notify-release.

Release pending!

Pending commits since release v1.0.12

Unreleased commits have been found which are pending release, please publish the changes.

  • 2769cd3 build(deps-dev): bump eslint from 8.27.0 to 8.28.0 (#146)
  • 06e93c2 build(deps-dev): bump tap from 16.3.1 to 16.3.2 (#145)
  • d62dc91 build(deps): bump nearform/optic-release-automation-action from 3 to 4 (#144)
  • bb73531 build(deps-dev): bump tap from 16.3.0 to 16.3.1 (#143)

If you close the issue as Not Planned

  • This notification will be snoozed and a new issue will be recreated after stale-days have passed.

Issue generated by github-actions-notify-release.

Release pending!

Pending commits since release v1.0.13

Unreleased commits have been found which are pending release, please publish the changes.

  • d4408b2 build(deps-dev): bump eslint from 8.29.0 to 8.30.0 (#160)
  • 2c37900 build(deps-dev): bump prettier from 2.8.0 to 2.8.1 (#158)

If you close the issue as Not Planned

  • The notification will be snoozed for 7 days, starting when the issue is closed. After this period has passed, a new notification issue will be created the next time this action is run.

Issue generated by github-actions-notify-release.

Release pending!

Pending commits since release v1.0.14

Unreleased commits have been found which are pending release, please publish the changes.

  • ba25712 build(deps-dev): bump tap from 16.3.2 to 16.3.3 (#171)
  • d059582 build(deps-dev): bump prettier from 2.8.1 to 2.8.2 (#170)
  • ba7978a build(deps-dev): bump @commitlint/cli from 17.4.0 to 17.4.1 (#169)
  • 5a0b4e9 build(deps-dev): bump @commitlint/config-conventional (#168)
  • 0db344a build(deps-dev): bump @commitlint/cli from 17.3.0 to 17.4.0 (#167)
  • e7c1d95 build(deps-dev): bump eslint-config-prettier from 8.5.0 to 8.6.0 (#166)
  • bf2d4a8 build(deps-dev): bump husky from 8.0.2 to 8.0.3 (#165)
  • 646b3db build(deps): bump json5 (#164)
  • 07a6ef0 build(deps-dev): bump eslint from 8.30.0 to 8.31.0 (#163)

If you close the issue as Not Planned

  • The notification will be snoozed for 7 days, starting when the issue is closed. After this period has passed, a new notification issue will be created the next time this action is run.

Issue generated by github-actions-notify-release.

Release pending!

Pending commits since release v1.0.26

Based on the following commits, a patch release is recommended.

Unreleased commits have been found which are pending release, please publish the changes.

  • 6b95c45 build(deps): bump actions-toolkit from `f816d51` to `011e30f` (#274)
  • 6828ada build(deps-dev): bump eslint from 8.39.0 to 8.40.0 (#273)
  • 17637ee build(deps): bump actions-toolkit from `857fb51` to `f816d51` (#272)
  • 98bb71f fix: optic release action permissions (#271)
  • ec77a70 build(deps-dev): bump @commitlint/cli from 17.6.1 to 17.6.3 (#270)
  • 05ae5fe build(deps-dev): bump @commitlint/config-conventional (#269)

If you close the issue as Not Planned

  • The notification will be snoozed for 7 days, starting when the issue is closed. After this period has passed, a new notification issue will be created the next time this action is run.

Issue generated by github-actions-notify-release.

Release pending!

Pending commits since release v1.0.15

Unreleased commits have been found which are pending release, please publish the changes.

  • f664128 build(deps-dev): bump eslint from 8.31.0 to 8.32.0 (#177)
  • ab8eec4 build(deps-dev): bump prettier from 2.8.2 to 2.8.3 (#176)
  • 05bc208 build(deps-dev): bump @commitlint/cli from 17.4.1 to 17.4.2 (#175)
  • 5532bd9 build(deps-dev): bump @commitlint/config-conventional (#174)

If you close the issue as Not Planned

  • The notification will be snoozed for 7 days, starting when the issue is closed. After this period has passed, a new notification issue will be created the next time this action is run.

Issue generated by github-actions-notify-release.

Release pending!

Pending commits since release v1.0.5

Unreleased commits have been found which are pending release, please publish the changes.

  • b8520dc build(deps-dev): bump eslint from 8.23.0 to 8.23.1 (#112)
  • f51d67e chore: removed optional github token (#111)
  • 805a8de Bump json2md from 1.12.0 to 1.13.0 (#110)
  • 88854b2 Bump dotenv from 16.0.1 to 16.0.2 (#109)
  • e7821dd Bump @commitlint/config-conventional from 17.0.3 to 17.1.0 (#107)
  • 3b331ed Bump eslint from 8.22.0 to 8.23.0 (#108)
  • 159de25 Bump @commitlint/cli from 17.0.3 to 17.1.2 (#106)
  • 2ea7c3c Bump @octokit/core from 4.0.4 to 4.0.5 (#105)
  • ed35b5d Bump eslint from 8.21.0 to 8.22.0 (#104)
  • bd4569a Bump @actions/core from 1.9.0 to 1.9.1 (#103)
  • 234f56e Bump eslint from 8.20.0 to 8.21.0 (#102)
  • 76f935e Bump eslint from 8.19.0 to 8.20.0 (#101)
  • ebadf3d Bump @octokit/core from 4.0.2 to 4.0.4 (#100)
  • 917289f Bump @octokit/core from 3.6.0 to 4.0.2 (#99)
  • 07f3512 Bump eslint from 8.18.0 to 8.19.0 (#98)
  • a540dc0 Bump eslint-plugin-prettier from 4.1.0 to 4.2.1 (#97)
  • 22de246 Bump @commitlint/config-conventional from 17.0.2 to 17.0.3 (#95)
  • 547a334 Bump eslint-plugin-prettier from 4.0.0 to 4.1.0 (#96)
  • 065d08f Bump lint-staged from 13.0.2 to 13.0.3 (#94)
  • 34b4a00 Bump @commitlint/cli from 17.0.2 to 17.0.3 (#93)
  • a1e9d32 Bump nearform/optic-release-automation-action from 2 to 3 (#92)
  • 081d70d Bump lint-staged from 13.0.1 to 13.0.2 (#91)
  • 78259e9 Bump tap from 16.2.0 to 16.3.0 (#90)
  • 933b9d0 Bump eslint from 8.17.0 to 8.18.0 (#89)
  • 3f747f3 Bump @actions/core from 1.8.2 to 1.9.0 (#88)
  • 59e86e2 Bump prettier from 2.7.0 to 2.7.1 (#87)
  • aa447ca Bump prettier from 2.6.2 to 2.7.0 (#86)
  • a52b776 Bump lint-staged from 13.0.0 to 13.0.1 (#84)
  • 9adcfdc Bump eslint from 8.16.0 to 8.17.0 (#83)

Issue generated by github-actions-notify-release.

Release pending!

Pending commits since release v1.0.30

Based on the following commits, a patch release is recommended.

Unreleased commits have been found which are pending release, please publish the changes.

  • fdd6791 build(deps): bump actions-toolkit from `999e7bd` to `6f90a66` (#309)
  • ea6e080 build(deps-dev): bump lint-staged from 13.2.2 to 13.2.3 (#308)
  • 85b01a0 build(deps): bump actions-toolkit from `7fed020` to `999e7bd` (#307)
  • 3f06ab7 build(deps-dev): bump @commitlint/config-conventional (#305)
  • 8bd424f build(deps-dev): bump @commitlint/cli from 17.6.5 to 17.6.6 (#306)
  • cb20348 build(deps): bump actions-toolkit from `f4f864a` to `7fed020` (#304)
  • 9002761 build(deps-dev): bump tap from 16.3.6 to 16.3.7 (#303)
  • 128f3e4 build(deps): bump actions-toolkit from `55c4dbe` to `f4f864a` (#302)

If you close the issue as Not Planned

  • The notification will be snoozed for 7 days, starting when the issue is closed. After this period has passed, a new notification issue will be created the next time this action is run.

Issue generated by github-actions-notify-release.

Release pending!

Pending commits since release v1.0.11

Unreleased commits have been found which are pending release, please publish the changes.

  • c29c386 build(deps-dev): bump husky from 8.0.1 to 8.0.2 (#140)
  • cb2a7df build(deps-dev): bump eslint from 8.26.0 to 8.27.0 (#139)
  • 7e95f48 build(deps-dev): bump @commitlint/config-conventional (#138)
  • e309774 build(deps-dev): bump @commitlint/cli from 17.1.2 to 17.2.0 (#137)

If you close the issue as Not Planned

  • This notification will be snoozed and a new issue will be recreated after stale-days have passed.

Issue generated by github-actions-notify-release.

Release pending!

Pending commits since release v1.0.17

Based on the following commits, a minor release is recommended.

Unreleased commits have been found which are pending release, please publish the changes.

  • 41eb9b2 build(deps-dev): bump prettier from 2.8.3 to 2.8.4 (#192)
  • b36cd80 build(deps-dev): bump lint-staged from 13.1.0 to 13.1.1 (#191)
  • d17e2ee build(deps): bump actions-toolkit from `4fdac3c` to `d06c29a` (#190)
  • 846a282 feat: update notify-release config (#189)

If you close the issue as Not Planned

  • The notification will be snoozed for 7 days, starting when the issue is closed. After this period has passed, a new notification issue will be created the next time this action is run.

Issue generated by github-actions-notify-release.

Release pending!

Pending commits since release v1.0.3

Unreleased commits have been found which are pending release, please publish the changes.

  • a633ec7 build: ci.yml should reference .nvmrc file (#71)
  • 4d693f6 Bump eslint from 8.15.0 to 8.16.0 (#72)
  • 46d5b0c Bump @actions/github from 5.0.2 to 5.0.3 (#69)
  • e7a5ea6 Bump @commitlint/cli from 16.2.4 to 17.0.0 (#67)
  • f235b7b Bump @actions/core from 1.8.1 to 1.8.2 (#68)
  • 3746d49 Bump @commitlint/config-conventional from 16.2.4 to 17.0.0 (#66)
  • 8ec1e51 Bump @actions/github from 5.0.1 to 5.0.2 (#65)
  • 35c6e32 Bump @actions/core from 1.8.0 to 1.8.1 (#64)
  • 990758a Bump dotenv from 16.0.0 to 16.0.1 (#63)
  • f4d9ce2 Bump husky from 7.0.4 to 8.0.1 (#62)
  • b3b3600 Bump eslint from 8.14.0 to 8.15.0 (#61)
  • cf2a214 Bump @actions/core from 1.7.0 to 1.8.0 (#60)
  • ea451ca Bump tap from 16.1.0 to 16.2.0 (#59)
  • 8f0280d Bump markdown-it from 13.0.0 to 13.0.1 (#58)
  • fe1a64c Bump @commitlint/cli from 16.2.3 to 16.2.4 (#57)
  • 8f98ee8 Bump @commitlint/config-conventional from 16.2.1 to 16.2.4 (#56)
  • 36e1c92 Bump lint-staged from 12.4.0 to 12.4.1 (#55)
  • 96fa9ac Bump @actions/core from 1.6.0 to 1.7.0 (#54)
  • a9f1122 Bump markdown-it from 12.3.2 to 13.0.0 (#53)
  • 5a6d958 Bump tap from 16.0.1 to 16.1.0 (#52)
  • 91a8fe0 Bump eslint from 8.13.0 to 8.14.0 (#51)
  • 6cbf3eb Bump lint-staged from 12.3.8 to 12.4.0 (#50)
  • 4297a2e Bump lint-staged from 12.3.7 to 12.3.8 (#49)
  • c92d837 Bump @vercel/ncc from 0.33.3 to 0.33.4 (#48)
  • 2fc46b6 Bump eslint from 8.12.0 to 8.13.0 (#47)
  • 5087f12 Bump tap from 16.0.0 to 16.0.1 (#42)
  • ed19a61 Bump prettier from 2.6.1 to 2.6.2 (#46)
  • c31e889 Bump @actions/github from 5.0.0 to 5.0.1 (#45)
  • 519daef Bump eslint from 8.11.0 to 8.12.0 (#44)
  • 321ca95 Bump prettier from 2.6.0 to 2.6.1 (#43)

Issue generated by github-actions-notify-release.

Release pending!

Pending commits since release v1.0.19

Based on the following commits, a patch release is recommended.

Unreleased commits have been found which are pending release, please publish the changes.

  • 400f6af build(deps-dev): bump eslint from 8.34.0 to 8.35.0 (#208)
  • 77cbd67 build(deps): bump actions-toolkit from `6ea420d` to `a84ce19` (#207)
  • 0145500 build(deps-dev): bump @commitlint/config-conventional (#206)
  • abc78f5 build(deps-dev): bump @commitlint/cli from 17.4.3 to 17.4.4 (#205)
  • 756c3e6 build(deps): bump actions-toolkit from `0bd29df` to `6ea420d` (#204)

If you close the issue as Not Planned

  • The notification will be snoozed for 7 days, starting when the issue is closed. After this period has passed, a new notification issue will be created the next time this action is run.

Issue generated by github-actions-notify-release.

Release pending!

Pending commits since release v1.0.35

Based on the following commits, a patch release is recommended.

Unreleased commits have been found which are pending release, please publish the changes.

  • f656e7f build(deps): bump actions-toolkit from `f78b0ab` to `994e8bf` (#349)
  • c6b8b65 build(deps-dev): bump eslint from 8.47.0 to 8.48.0 (#348)
  • a170982 build(deps-dev): bump lint-staged from 14.0.0 to 14.0.1 (#345)
  • e10a958 build(deps): bump actions-toolkit from `0a4a5a0` to `f78b0ab` (#343)
  • 8660aeb build(deps-dev): bump eslint from 8.46.0 to 8.47.0 (#342)
  • 111a6b5 build(deps-dev): bump lint-staged from 13.2.3 to 14.0.0 (#341)

If you close the issue as Not Planned

  • The notification will be snoozed for 7 days, starting when the issue is closed. After this period has passed, a new notification issue will be created the next time this action is run.

Issue generated by github-actions-notify-release.

Release pending!

Pending commits since release v1.0.22

Based on the following commits, a minor release is recommended.

Unreleased commits have been found which are pending release, please publish the changes.

  • d8e9b66 ci: update check-linked-issues job permissions (#239)
  • eb34ecd fix permissions for github-action-notify-release (#238)
  • 391ced8 build(deps-dev): bump @commitlint/cli from 17.5.0 to 17.5.1 (#235)
  • 703a136 build(deps): bump actions-toolkit from `7420ff8` to `7053aef` (#237)
  • 84de290 build(deps-dev): bump eslint from 8.36.0 to 8.37.0 (#236)
  • 946edb4 chore: update references to nearform-actions
  • 1517709 build(deps): bump actions-toolkit from `7abc178` to `7420ff8` (#234)
  • 90ea6d2 build(deps-dev): bump prettier from 2.8.6 to 2.8.7 (#233)
  • a5d926c build(deps): bump actions-toolkit from `07e18f7` to `7abc178` (#232)
  • 372ae2a build(deps): bump actions-toolkit from `1877d64` to `07e18f7` (#231)
  • 5925519 build(deps-dev): bump @commitlint/cli from 17.4.4 to 17.5.0 (#230)
  • 356bee0 feat: update documentation to include correct permissions (#229)
  • a2b83e9 build(deps): bump actions-toolkit from `9697468` to `1877d64` (#227)
  • b9b90e8 build(deps-dev): bump eslint-config-prettier from 8.7.0 to 8.8.0 (#226)
  • ca4ddd4 build(deps-dev): bump prettier from 2.8.5 to 2.8.6 (#225)
  • 7773cee build(deps-dev): bump prettier from 2.8.4 to 2.8.5 (#224)

If you close the issue as Not Planned

  • The notification will be snoozed for 7 days, starting when the issue is closed. After this period has passed, a new notification issue will be created the next time this action is run.

Issue generated by github-actions-notify-release.

Release pending!

Pending commits since release v1.0.32

Based on the following commits, a patch release is recommended.

Unreleased commits have been found which are pending release, please publish the changes.

  • 08972bb build(deps): bump actions-toolkit from `1ba2ffc` to `5ed80bc` (#319)
  • e41c7b0 build(deps-dev): bump eslint from 8.44.0 to 8.45.0 (#318)
  • 404e88f build(deps): bump @octokit/core from 4.2.4 to 5.0.0 (#317)

If you close the issue as Not Planned

  • The notification will be snoozed for 7 days, starting when the issue is closed. After this period has passed, a new notification issue will be created the next time this action is run.

Issue generated by github-actions-notify-release.

Release pending!

Pending commits since release v1.0.27

Based on the following commits, a patch release is recommended.

Unreleased commits have been found which are pending release, please publish the changes.

  • d6c3de6 build(deps): bump actions-toolkit from `5043edf` to `11cb3a5` (#280)
  • f9998e3 build(deps-dev): bump eslint from 8.40.0 to 8.41.0 (#279)
  • f77c694 build(deps): bump actions-toolkit from `011e30f` to `5043edf` (#278)
  • 9884c05 build(deps): bump @octokit/core from 4.2.0 to 4.2.1 (#277)

If you close the issue as Not Planned

  • The notification will be snoozed for 7 days, starting when the issue is closed. After this period has passed, a new notification issue will be created the next time this action is run.

Issue generated by github-actions-notify-release.

Release pending!

Pending commits since release v1.0.28

Based on the following commits, a patch release is recommended.

Unreleased commits have been found which are pending release, please publish the changes.

  • 3602fdf build(deps): bump actions-toolkit from `8b605a9` to `ed1c17b` (#291)
  • 310a987 build(deps): bump dotenv from 16.1.3 to 16.1.4 (#290)
  • 0378f00 build(deps-dev): bump tap from 16.3.4 to 16.3.6 (#289)
  • b91199e build(deps-dev): bump eslint from 8.41.0 to 8.42.0 (#288)
  • 5c1c08c build(deps): bump dotenv from 16.1.1 to 16.1.3 (#287)
  • dff043e build(deps): bump dotenv from 16.0.3 to 16.1.1 (#286)
  • 458bfdf build(deps): bump actions-toolkit from `11cb3a5` to `8b605a9` (#285)
  • aa2a839 build(deps-dev): bump @commitlint/cli from 17.6.3 to 17.6.5 (#284)
  • 26fc946 build(deps-dev): bump @commitlint/config-conventional (#283)

If you close the issue as Not Planned

  • The notification will be snoozed for 7 days, starting when the issue is closed. After this period has passed, a new notification issue will be created the next time this action is run.

Issue generated by github-actions-notify-release.

Release pending!

Pending commits since release v1.0.25

Based on the following commits, a patch release is recommended.

Unreleased commits have been found which are pending release, please publish the changes.

  • c10bf03 build(deps-dev): bump lint-staged from 13.2.1 to 13.2.2 (#266)
  • bfa7b54 build(deps): bump actions-toolkit from `a262b95` to `857fb51` (#265)

If you close the issue as Not Planned

  • The notification will be snoozed for 7 days, starting when the issue is closed. After this period has passed, a new notification issue will be created the next time this action is run.

Issue generated by github-actions-notify-release.

Release pending!

Pending commits since release v1.0.20

Based on the following commits, a patch release is recommended.

Unreleased commits have been found which are pending release, please publish the changes.

  • 345ac16 build(deps): bump actions-toolkit from `7453c92` to `571410a` (#215)
  • 267a1a0 build(deps-dev): bump eslint-config-prettier from 8.6.0 to 8.7.0 (#214)
  • 6ccf1c7 build(deps): bump actions-toolkit from `b6aa9d4` to `7453c92` (#213)
  • cd663f4 build(deps): bump actions-toolkit from `bcfc0e5` to `b6aa9d4` (#212)
  • 5b265ef build(deps): bump actions-toolkit from `a84ce19` to `bcfc0e5` (#211)

If you close the issue as Not Planned

  • The notification will be snoozed for 7 days, starting when the issue is closed. After this period has passed, a new notification issue will be created the next time this action is run.

Issue generated by github-actions-notify-release.

Release pending!

Pending commits since release v1.0.12

Unreleased commits have been found which are pending release, please publish the changes.

  • 73c8139 build(deps-dev): bump lint-staged from 13.0.3 to 13.0.4 (#151)
  • 728f598 build(deps-dev): bump prettier from 2.7.1 to 2.8.0 (#150)
  • 1def581 build(deps-dev): bump @commitlint/config-conventional (#149)
  • 4632fd4 build(deps-dev): bump @commitlint/cli from 17.2.0 to 17.3.0 (#148)
  • 2769cd3 build(deps-dev): bump eslint from 8.27.0 to 8.28.0 (#146)
  • 06e93c2 build(deps-dev): bump tap from 16.3.1 to 16.3.2 (#145)
  • d62dc91 build(deps): bump nearform/optic-release-automation-action from 3 to 4 (#144)
  • bb73531 build(deps-dev): bump tap from 16.3.0 to 16.3.1 (#143)

If you close the issue as Not Planned

  • This notification will be snoozed and a new issue will be recreated after 7 have passed.

Issue generated by github-actions-notify-release.

Release pending!

Pending commits since release v1.0.7

Unreleased commits have been found which are pending release, please publish the changes.

  • 11d9aba build(deps): bump @actions/github from 5.1.0 to 5.1.1 (#123)
  • f3ea3fa build(deps): bump @actions/core from 1.9.1 to 1.10.0 (#122)
  • ec5a16c build(deps): bump dotenv from 16.0.2 to 16.0.3 (#121)
  • e564aac build(deps-dev): bump eslint from 8.23.1 to 8.24.0 (#120)
  • 69807bc build(deps): bump @actions/github from 5.0.3 to 5.1.0 (#119)

Issue generated by github-actions-notify-release.

Release pending!

Pending commits since release v1.0.15

Unreleased commits have been found which are pending release, please publish the changes.

  • af680a3 build(deps-dev): bump @vercel/ncc from 0.36.0 to 0.36.1 (#181)
  • c1ed707 build(deps-dev): bump tap from 16.3.3 to 16.3.4 (#178)
  • 73017fa build(deps): bump @octokit/core from 4.0.5 to 4.2.0 (#180)
  • f664128 build(deps-dev): bump eslint from 8.31.0 to 8.32.0 (#177)
  • ab8eec4 build(deps-dev): bump prettier from 2.8.2 to 2.8.3 (#176)
  • 05bc208 build(deps-dev): bump @commitlint/cli from 17.4.1 to 17.4.2 (#175)
  • 5532bd9 build(deps-dev): bump @commitlint/config-conventional (#174)

If you close the issue as Not Planned

  • The notification will be snoozed for 7 days, starting when the issue is closed. After this period has passed, a new notification issue will be created the next time this action is run.

Issue generated by github-actions-notify-release.

Release pending!

Pending commits since release v1.0.12

Unreleased commits have been found which are pending release, please publish the changes.

  • a34a988 build(deps-dev): bump eslint from 8.28.0 to 8.29.0 (#155)
  • 0ce2c11 build(deps-dev): bump @vercel/ncc from 0.34.0 to 0.36.0 (#154)
  • 0422e88 build(deps-dev): bump lint-staged from 13.0.4 to 13.1.0 (#153)
  • 73c8139 build(deps-dev): bump lint-staged from 13.0.3 to 13.0.4 (#151)
  • 728f598 build(deps-dev): bump prettier from 2.7.1 to 2.8.0 (#150)
  • 1def581 build(deps-dev): bump @commitlint/config-conventional (#149)
  • 4632fd4 build(deps-dev): bump @commitlint/cli from 17.2.0 to 17.3.0 (#148)
  • 2769cd3 build(deps-dev): bump eslint from 8.27.0 to 8.28.0 (#146)
  • 06e93c2 build(deps-dev): bump tap from 16.3.1 to 16.3.2 (#145)
  • d62dc91 build(deps): bump nearform/optic-release-automation-action from 3 to 4 (#144)
  • bb73531 build(deps-dev): bump tap from 16.3.0 to 16.3.1 (#143)

If you close the issue as Not Planned

  • This notification will be snoozed and a new issue will be recreated after 7 days have passed.

Issue generated by github-actions-notify-release.

Release pending!

Pending commits since release v1.0.13

Unreleased commits have been found which are pending release, please publish the changes.

  • 2c37900 build(deps-dev): bump prettier from 2.8.0 to 2.8.1 (#158)

If you close the issue as Not Planned

  • The notification will be snoozed for 7 days, starting when the issue is closed. After this period has passed, a new notification issue will be created the next time this action is run.

Issue generated by github-actions-notify-release.

Release pending!

Pending commits since release v1.0.35

Based on the following commits, a patch release is recommended.

Unreleased commits have been found which are pending release, please publish the changes.

  • a170982 build(deps-dev): bump lint-staged from 14.0.0 to 14.0.1 (#345)
  • e10a958 build(deps): bump actions-toolkit from `0a4a5a0` to `f78b0ab` (#343)
  • 8660aeb build(deps-dev): bump eslint from 8.46.0 to 8.47.0 (#342)
  • 111a6b5 build(deps-dev): bump lint-staged from 13.2.3 to 14.0.0 (#341)

If you close the issue as Not Planned

  • The notification will be snoozed for 7 days, starting when the issue is closed. After this period has passed, a new notification issue will be created the next time this action is run.

Issue generated by github-actions-notify-release.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.