Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/bibudem/corvee-bib
Browse files Browse the repository at this point in the history
  • Loading branch information
remillc committed Jan 22, 2024
2 parents 25a53c7 + 3de568e commit f50d0df
Show file tree
Hide file tree
Showing 4 changed files with 429 additions and 332 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/dependabot-auto-merge.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Dependabot auto-merge

on: pull_request_target

permissions:
pull-requests: write
contents: write

jobs:
dependabot:
runs-on: ubuntu-latest
if: github.actor == 'dependabot[bot]'
steps:
- name: Dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@v1
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
- name: Enable auto-merge for Dependabot PRs
run: gh pr merge --auto --merge "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
# Finally, this sets the PR to allow auto-merging for patch and minor
# updates if all checks pass
# if: steps.metadata.outputs.update-type == 'version-update:semver-patch' || steps.metadata.outputs.update-type == 'version-update:semver-minor'
- name: Approve patch and minor updates
if: ${{ steps.metadata.outputs.update-type != 'version-update:semver-major' }}
run: gh pr review $PR_URL --approve -b "I'm **approving** this pull request because **it includes a patch or minor update**"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}

22 changes: 21 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# Changelog

## [2.1.0](https://github.com/bibudem/corvee-bib/compare/v2.0.0...v2.1.0) (2024-01-09)


### Features

* **filter:** Ajout de Microsoft à la liste des services d'authentification ([e2648c6](https://github.com/bibudem/corvee-bib/commit/e2648c66d4d0415e1b33ebd837782e3f9707be32))
* **filter:** Ajout de patrons d'URLs pour détecter des 404 ([31796c7](https://github.com/bibudem/corvee-bib/commit/31796c743893b183b89bb3ced319ee42a1affd31))
* **filter:** Retrait de la limite de rapports du filtre http-30x-https-upgrade-scrict ([5714661](https://github.com/bibudem/corvee-bib/commit/5714661708d326cc90167a209395e960feabef88))
* **harvester:** Exclusion des nouvelles du moissonnage ([b4e4509](https://github.com/bibudem/corvee-bib/commit/b4e45094673347c81a31ee14eff404869833bced))
* **harvester:** Ne pas moissonner dans les URLs internes à TYPO3 (https://bib.umontreal.ca/index.php?id=) ([5ea57d6](https://github.com/bibudem/corvee-bib/commit/5ea57d68d721df2afa33cad528db1e45ab680902))
* **harvester:** Ne pas moissonner les liens de la section de développement de l'édimestre ([125b673](https://github.com/bibudem/corvee-bib/commit/125b6731623854101dcd71b972f2f66b0681f4aa))
* **harvester:** Ne pas moissonner les pages situées sur docs.bib.umontreal.ca ([8a0b88e](https://github.com/bibudem/corvee-bib/commit/8a0b88e663423466e00cec3395fad2efcabad8e4))
* **sections:** Ajout d'une section "Autres" ([58c039b](https://github.com/bibudem/corvee-bib/commit/58c039b31f04a949734fc815ce71132bb1d4c656))


### Bug Fixes

* **parser:** Amélioration de l'extraction du texte des liens ([35a0c8d](https://github.com/bibudem/corvee-bib/commit/35a0c8d0a456fdb6c7c955cb75a28c8529d4edaf))
* **parser:** Les liens dans les fils RSS (LibGuides) n'étaient pas toujours exclus. ([a8b28fa](https://github.com/bibudem/corvee-bib/commit/a8b28fa61fc5f88d47eb0b0b6de639719ead50aa))
* **parser:** Misc ([b6fb7ac](https://github.com/bibudem/corvee-bib/commit/b6fb7ac46900872f21d4648f4dcb594217449ea1))

## [2.0.0](https://github.com/bibudem/corvee-bib/compare/2.0.0-beta.7...v2.0.0) (2023-06-13)


Expand All @@ -12,4 +33,3 @@
### Miscellaneous Chores

* release 2.0.0 ([75f1fef](https://github.com/bibudem/corvee-bib/commit/75f1fefecad999d9ffb89aac0ea316c6721b80e6))

Loading

0 comments on commit f50d0df

Please sign in to comment.