From 132c0e9dd4dac34573b559b22c6ee81efc9fc13a Mon Sep 17 00:00:00 2001 From: Brandon Bertelsen Date: Thu, 16 Apr 2020 14:24:08 -0500 Subject: [PATCH 1/2] CI adjustments for #85 --- .github/workflows/ci.yml | 3 --- .github/workflows/internal_tests.yml | 14 ++++++++++++++ NEWS.md | 9 +++++---- 3 files changed, 19 insertions(+), 7 deletions(-) create mode 100644 .github/workflows/internal_tests.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index df7c75ee..5a60f1e6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,6 +14,3 @@ jobs: - name: Check run: | R CMD check --no-vignettes --no-manual crunchtabs_*.tar.gz - - name: Repository Dispatch - run: | - curl -X POST -u "${{ secrets.PAT_USERNAME }}:${{ secrets.PAT_TOKEN }}" -H "Accept: application/vnd.github.everest-preview+json" -H "Content-Type: application/json" https://api.github.com/repos/yougov-datascience/crunchtabs_internal_tests/dispatches --data '{"event_type": "crunchtabs_hook"}' diff --git a/.github/workflows/internal_tests.yml b/.github/workflows/internal_tests.yml new file mode 100644 index 00000000..28587398 --- /dev/null +++ b/.github/workflows/internal_tests.yml @@ -0,0 +1,14 @@ +name: internal_tests + +on: [push] + branches: + - develop + - master + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Repository Dispatch + run: | + curl -X POST -u "${{ secrets.PAT_USERNAME }}:${{ secrets.PAT_TOKEN }}" -H "Accept: application/vnd.github.everest-preview+json" -H "Content-Type: application/json" https://api.github.com/repos/yougov-datascience/crunchtabs_internal_tests/dispatches --data '{"event_type": "crunchtabs_hook"}' diff --git a/NEWS.md b/NEWS.md index 95be29ca..c8bd4b79 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,9 +1,10 @@ ## crunchtabs 1.2.2 -* Make categorical arrays in toplines smarter -* Add ability to specify column width of stub in crosstab and categorical array via format_value_column_exceptions -* Adding significant documentation -* Adding more tests +* Make categorical arrays in toplines smarter (#67) +* Add ability to specify column width of stub in crosstab and categorical array via format_value_column_exceptions (#77) +* Adding significant documentation (#66) +* Adding more tests (#11) +* Updates to CI and development setup (#68) ## crunchtabs 1.2.1 From 17a327b1321ce2c239c8d714186a3d20f2b49335 Mon Sep 17 00:00:00 2001 From: Brandon Bertelsen Date: Thu, 16 Apr 2020 14:26:44 -0500 Subject: [PATCH 2/2] CI adjustments for #85 --- .github/workflows/internal_tests.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/internal_tests.yml b/.github/workflows/internal_tests.yml index 28587398..058eee1f 100644 --- a/.github/workflows/internal_tests.yml +++ b/.github/workflows/internal_tests.yml @@ -1,9 +1,10 @@ name: internal_tests -on: [push] - branches: - - develop - - master +on: + push: + branches: + - develop + - master jobs: build: