From a60fdd30790e60b88229480048f37927f2fe5776 Mon Sep 17 00:00:00 2001 From: github actions Date: Fri, 15 Jul 2022 02:56:23 +0000 Subject: [PATCH] Squashed 'buildres/csl/csl-styles/' changes from 3d3573c8db..39fede595c MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 39fede595c Update associacao-brasileira-de-normas-tecnicas.csl (#6138) fde7695eae Include chapter title (#6140) 1e3d8b4cf5 Update n.d. abbreivation for DGP style (#6136) ebb728bd1d suffix '.' after first group; changed e-mail (#6135) eed4f07ec0 Update and rename sciences-po-ecole-doctorale-note-french.csl to scie… (#6127) f194647528 Delete TU Dresden Medizin as requested by library (#6131) d8423d84cd Create entomological-review.csl (#6120) 064a3946ba Create australasian-journal-of-philosophy.csl (#6063) a998ded21e Add composer.json (#5668) 37083c9da0 Update copernicus-publications.csl (#6062) 694c97b528 Create chaucer review (#6061) 625a42450c Create haffner-style-manual.csl (#6054) 8b7224b37b make annals-of-allergy-asthma-and-immunology independent (#6041) 710748c501 Create university-of-pretoria-harvard-theology-religion.csl (#6106) d16dffd6d7 Create health-physics.csl (#6040) ca9e184819 Update style-manual-australian-government.csl (#6119) e4122774a1 Create chemical-engineering-technology.csl (#6039) bebdb48687 Create bibliothek-forschung-und-praxis.csl (#6038) 29e49cd196 Update nature.csl (#6117) 891897d755 fix short title for SBL (#6118) git-subtree-dir: buildres/csl/csl-styles git-subtree-split: 39fede595c38cece6f1dcc05ee94163453798c60 --- .github/workflows/merge.yaml | 39 +- annals-of-allergy-asthma-and-immunology.csl | 267 ++++++ associacao-brasileira-de-normas-tecnicas.csl | 4 +- australasian-journal-of-philosophy.csl | 317 +++++++ bibliothek-forschung-und-praxis.csl | 623 ++++++++++++++ chaucer-review.csl | 775 ++++++++++++++++++ chemical-engineering-technology.csl | 173 ++++ composer.json | 13 + copernicus-publications.csl | 2 +- ...nnals-of-allergy-asthma-and-immunology.csl | 14 - deutsche-gesellschaft-fur-psychologie.csl | 1 + entomological-review.csl | 231 ++++++ haffner-style-manual.csl | 512 ++++++++++++ health-physics.csl | 161 ++++ ...esponsibility-in-education-and-science.csl | 8 +- nature-no-et-al.csl | 26 +- nature-no-superscript.csl | 26 +- nature.csl | 26 +- renamed-styles.json | 3 +- science.csl | 1 + sciences-po-ecole-doctorale-author-date.csl | 4 +- sciences-po-ecole-doctorale-note-french.csl | 10 +- ...lical-literature-fullnote-bibliography.csl | 2 +- spec/filters.yaml | 1 + style-manual-australian-government.csl | 10 +- technische-universitat-dresden-medizin.csl | 265 ------ ...-of-pretoria-harvard-theology-religion.csl | 347 ++++++++ 27 files changed, 3552 insertions(+), 309 deletions(-) create mode 100644 annals-of-allergy-asthma-and-immunology.csl create mode 100644 australasian-journal-of-philosophy.csl create mode 100644 bibliothek-forschung-und-praxis.csl create mode 100644 chaucer-review.csl create mode 100644 chemical-engineering-technology.csl create mode 100644 composer.json delete mode 100644 dependent/annals-of-allergy-asthma-and-immunology.csl create mode 100644 entomological-review.csl create mode 100644 haffner-style-manual.csl create mode 100644 health-physics.csl delete mode 100644 technische-universitat-dresden-medizin.csl create mode 100644 university-of-pretoria-harvard-theology-religion.csl diff --git a/.github/workflows/merge.yaml b/.github/workflows/merge.yaml index 0a0d9db955e..7e5736cc960 100644 --- a/.github/workflows/merge.yaml +++ b/.github/workflows/merge.yaml @@ -48,6 +48,10 @@ jobs: - deleted: [ '*.csl', 'dependent/*.csl', '*.xml' ] workflows: - added|modified: .github/workflows/*.yaml + updated_composer: + - added|modified: composer.json + deleted_composer: + - deleted: composer.json - name: Changed files if: github.event_name == 'push' @@ -87,11 +91,24 @@ jobs: run: cd release && git rm ${{ steps.update.outputs.deleted_files }} if: github.event_name == 'push' && steps.update.outputs.deleted == 'true' + - name: Update composer.json + if: steps.update.outputs.updated_composer == 'true' + run: | + cp composer.json release/composer.json + cd release + git add composer.json + + - name: Delete composer.json + if: steps.update.outputs.deleted_composer == 'true' + run: | + cd release + git rm composer.json + - uses: stefanzweifel/git-auto-commit-action@v4 with: repository: 'release' - commit_message: Releasing ${{ steps.update.outputs.updated_files }} ${{ steps.update.outputs.deleted_files }} - if: github.event_name == 'push' && (steps.update.outputs.updated == 'true' || steps.update.outputs.deleted == 'true') + commit_message: Releasing ${{ steps.update.outputs.updated_files }} ${{ steps.update.outputs.deleted_files }} ${{ steps.update.outputs.updated_composer_files }} ${{ steps.update.outputs.deleted_composer_files }} + if: github.event_name == 'push' && (steps.update.outputs.updated == 'true' || steps.update.outputs.deleted == 'true' || steps.update.outputs.updated_composer == 'true' || steps.update.outputs.deleted_composer == 'true') - uses: stefanzweifel/git-auto-commit-action@v4 with: @@ -116,3 +133,21 @@ jobs: git-user: "csl-bot" git-user-email: github@citationstyles.org git-commit-message: copied ${{ steps.update.outputs.workflows_files }} from styles + + - name: Bump version and push tag + id: tag_version + uses: mathieudutour/github-tag-action@v5.6 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + default_bump: patch + if: github.event_name == 'push' && hashFiles('composer.json') != '' && (steps.update.outputs.updated == 'true' || steps.update.outputs.deleted == 'true') + + - name: Create a GitHub release + uses: softprops/action-gh-release@v0.1.14 + env: + github_token: ${{ secrets.GITHUB_TOKEN }} + with: + tag_name: ${{ steps.tag_version.outputs.new_tag }} + name: Release ${{ steps.tag_version.outputs.new_tag }} + body: Released ${{ steps.update.outputs.updated_files }} ${{ steps.update.outputs.deleted_files }} ${{ steps.update.outputs.updated_composer_files }} ${{ steps.update.outputs.deleted_composer_files }} + if: github.event_name == 'push' && hashFiles('composer.json') != '' && (steps.update.outputs.updated == 'true' || steps.update.outputs.deleted == 'true') diff --git a/annals-of-allergy-asthma-and-immunology.csl b/annals-of-allergy-asthma-and-immunology.csl new file mode 100644 index 00000000000..b612c5ff55f --- /dev/null +++ b/annals-of-allergy-asthma-and-immunology.csl @@ -0,0 +1,267 @@ + + diff --git a/associacao-brasileira-de-normas-tecnicas.csl b/associacao-brasileira-de-normas-tecnicas.csl index 2b769703f27..cc8975fa8c2 100644 --- a/associacao-brasileira-de-normas-tecnicas.csl +++ b/associacao-brasileira-de-normas-tecnicas.csl @@ -82,7 +82,7 @@ tendo as inicias separadas por ponto.--> -