You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- name: git stash if material changes have not been made
44
+
# When considering whether it's worth making a PR, ignore the following:
45
+
# - Any updates to the package.json or package-lock.json files in OpenActive.DatasetSite.NET.Generator (not worth creating a PR JUST for these if the template itself has not been updated)
46
+
# git stashing if no material changes allows the next step to close the PR if one is already open
47
+
run: if [ "$(git diff --numstat | grep -vc '^.*package\.json\|.*package-lock\.json$')" -eq "0" ]; then git stash; else echo "Material changes found"; fi
Update to use latest version of [OpenActive.NET](https://github.com/openactive/OpenActive.NET/) and [OpenActive.DatasetSite.NET](https://github.com/openactive/OpenActive.DatasetSite.NET/)
65
+
labels: |
66
+
automated pr
67
+
team-reviewers: |
68
+
owners
69
+
maintainers
70
+
draft: false
71
+
72
+
- name: Check outputs
73
+
run: |
74
+
echo "Pull Request Number - ${{ steps.cpr.outputs.pull-request-number }}"
run: dotnet test ./Fakes/OpenActive.FakeDatabase.NET.Tests/OpenActive.FakeDatabase.NET.Tests.csproj --configuration Release --no-build --verbosity normal
This release contains minor amendments based on updates to the [OpenActive Vocabulary](https://openactive.io/ns/) (codified by the [Data Models](https://github.com/openactive/data-models)), and the latest version of the [Dataset Site Template](https://github.com/openactive/dataset-site-template).
265
+
266
+
Published to [Nuget](https://www.nuget.org/packages/OpenActive.Server.NET/${{ steps.nbgv.outputs.SimpleVersion }}).
267
+
draft: false
268
+
prerelease: false
269
+
270
+
publish-fake-database:
271
+
# Master branch only
272
+
if: ${{ github.ref == 'refs/heads/master' }}
273
+
needs:
274
+
- core
275
+
- framework
276
+
runs-on: ubuntu-latest
277
+
steps:
278
+
- name: Checkout
279
+
uses: actions/checkout@v2
280
+
with:
281
+
fetch-depth: 0# avoid shallow clone so nbgv can do its work.
run: dotnet test ./Fakes/OpenActive.FakeDatabase.NET.Tests/OpenActive.FakeDatabase.NET.Tests.csproj --configuration Release --no-restore --verbosity normal
0 commit comments