Skip to content

Commit 4fe0ad7

Browse files
author
cdawei
committed
Merge branch 'dev' into dc/424_locmax_lint
2 parents 976ac95 + 44cc523 commit 4fe0ad7

File tree

4 files changed

+25
-12
lines changed

4 files changed

+25
-12
lines changed

.github/workflows/ci.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -111,13 +111,13 @@ jobs:
111111
'lib/**/*.dart'
112112
fail: false
113113

114-
# - name: Create Issue From File
115-
# if: steps.lychee.outputs.exit_code != 0
116-
# uses: peter-evans/create-issue-from-file@v5
117-
# with:
118-
# title: Link Checker Report
119-
# content-filepath: ./lychee/out.md
120-
# labels: report, automated issue
114+
- name: Create Issue From File
115+
if: steps.lychee.outputs.exit_code != 0
116+
uses: peter-evans/create-issue-from-file@v5
117+
with:
118+
title: Link Checker Report
119+
content-filepath: ./lychee/out.md
120+
labels: report, automated issue
121121

122122
locmax:
123123
runs-on: ubuntu-latest

.gitignore

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,17 +32,30 @@ installers/*-windows.zip
3232
# auto-regenerated when tests are run. These are test-only
3333
# credentials for a dev POD server, not production.
3434
#
35-
# Because the files are already in the repo we need to tell git to
36-
# skip these files from the work tree so local chenges don't get committed
35+
# Because the files are already in the repo we need to tell our
36+
# particular clone of the repository (i.e., for each developer) to
37+
# assume the files are unchanged, even though they will be updated for
38+
# each test run.
3739
#
38-
# git update-index --skip-worktree integration_test/fixtures/auth_tokens.json integration_test/fixtures/complete_auth_data.json
40+
# git update-index --assume-unchanged integration_test/fixtures/auth_tokens.json integration_test/fixtures/complete_auth_data.json
41+
#
42+
# To undo this:
43+
#
44+
# git update-index --no-assume-unchanged integration_test/fixtures/auth_tokens.json integration_test/fixtures/complete_auth_data.json
45+
#
46+
# To see which files are marked this way:
47+
#
48+
# git ls-files -v | grep '^h'
3949

4050
# Integration test auth data (contains sensitive tokens)
4151

4252
#integration/fixtures/auth_tokens.json
4353
#integration/fixtures/complete_auth_data.json
4454
#integration/fixtures/test_credentials.json
4555

56+
# Integration test TMDB API key (contains sensitive API key)
57+
integration_test/fixtures/tmdb_api_key.json
58+
4659
########################################################################
4760
# From https://github.com/flutter/flutter/blob/master/.gitignore
4861
# Combined with the github flutter .gitignore

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ dependencies:
150150
```
151151
<!-- TODO dc: Refer to keypod as the example? -->
152152
An example project that uses `solidpod` can be found
153-
in the [demopod](https://github.com/anusii/solidpod/tree/dev/demopod)
153+
in the [example](https://github.com/anusii/solidpod/tree/dev/example)
154154
folder of the git repository.
155155

156156
<!-- TODO: List prerequisites and provide or pointer to information on how

support/flutter.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -515,7 +515,7 @@ unused_files:
515515
.PHONY: lychee
516516
lychee:
517517
@echo "Lychee: CHECK LINKS."
518-
-lychee --no-progress --format compact 'assets/**/*.md' 'assets/**/*.html' 'lib/**/*.dart'
518+
-lychee --no-progress --format compact *.md ./**/*.dart $(if $(wildcard ./**/*.md),./**/*.md) $(if $(wildcard ./**/*.html),./**/*.html)
519519
@echo $(SEPARATOR)
520520

521521
### TODO THESE SHOULD BE CHECKED AND CLEANED UP

0 commit comments

Comments
 (0)