Skip to content

Commit

Permalink
Removed patch that was fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
pookmish committed Jun 7, 2023
1 parent c52a101 commit 3532e96
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 12 deletions.
36 changes: 25 additions & 11 deletions .github/workflows/label.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,34 @@
# This workflow will triage pull requests and apply a label based on the
# paths that are modified in the pull request.
#
# To use this workflow, you will need to set up a .github/labeler.yml
# file with configuration. For more information, see:
# https://github.com/actions/labeler/blob/master/README.md
# .github/workflows/release.yml
name: Release

name: PR Labeler
on:
pull_request:
types: [opened, synchronize]
types: [closed]

jobs:
pr-labeler:
build:
runs-on: ubuntu-latest
permissions: write-all
if: github.event.pull_request.merged
steps:
- uses: actions/checkout@v2
- uses: banyan/[email protected]
- name: Get Next Release
id: tag
uses: K-Phoen/semver-release-action@master
with:
release_strategy: none
release_branch: main
tag_format: "%major%.%minor%.%patch%"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- run: echo 'Creating new release for ' ${{ steps.tag.outputs.tag }}
- name: Create Release
if: ${{ steps.tag.outputs.tag }}
uses: ncipollo/release-action@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
name: ${{ steps.tag.outputs.tag }}
tag: ${{ steps.tag.outputs.tag }}
commit: ${{ github.sha }}
generateReleaseNotes: true
makeLatest: true
1 change: 0 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,6 @@
"https://www.drupal.org/project/key/issues/2980072": "patches/contrib/key-encrypt-2980072-4.patch"
},
"drupal/menu_position": {
"https://www.drupal.org/project/menu_position/issues/3110502": "https://www.drupal.org/files/issues/2020-07-29/drupal-menu_position-WSOD-when-menu-parent-no-longer-exists-3110502-26.patch",
"Clean menu tree": "patches/contrib/menu_postion_rule-edit_route.patch"
},
"drupal/menu_trail_by_path": {
Expand Down

0 comments on commit 3532e96

Please sign in to comment.