Skip to content

Commit 2411abf

Browse files
Run pre-commit fix up (brisbanesocialchess#350)
* Run pre-commit fix up * Update docs/minutes.html Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> --------- Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
1 parent 8748034 commit 2411abf

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

.github/workflows/pr-deploy-preview.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ jobs:
2525
id: check_pelicanconf
2626
run: |
2727
if [ -f pelicanconf.py ]; then
28-
echo "file_exists=true" >> $GITHUB_OUTPUT
28+
echo "file_exists=true" >> "$GITHUB_OUTPUT"
2929
else
30-
echo "file_exists=false" >> $GITHUB_OUTPUT
30+
echo "file_exists=false" >> "$GITHUB_OUTPUT"
3131
fi
3232
3333
- name: Install dependencies

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ Welcome to the source code repository for the Brisbane Social Chess website.
2828
- [Run Tests](#run-tests)
2929
- [About Brisbane Social Chess](#about-brisbane-social-chess)
3030
- [Getting Started / Building the Site](#getting-started--building-the-site)
31+
- [Build the Docker image for running `pre-commit` easily](#build-the-docker-image-for-running-pre-commit-easily)
3132

3233
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
3334

docs/minutes.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ <h3>June 2024 – Committee Meeting (24/06/2025)</h3>
203203
<li>
204204
Steve: AGM first steps
205205
<br>
206-
Steve suggested that we should start preparation for this year's AGM. First steps could be to choose a date and prepare a Notice of Meeting. Rob noted the need to include a financial report in the Notice so that this can be approved at the AGM. This then requires that annual accounts are completed before the Notice can be submitted. Rob also noted that the Notice must include any resolutions to be considered and could include, for example, committee size. General discussion noted the desirability of including some reporting of BSC committee activity over the last year in the Notice such as some commentary from the President or an indiaction of how many committee meetings and resolutions were had during the year.
206+
Steve suggested that we should start preparation for this year's AGM. First steps could be to choose a date and prepare a Notice of Meeting. Rob noted the need to include a financial report in the Notice so that this can be approved at the AGM. This then requires that annual accounts are completed before the Notice can be submitted. Rob also noted that the Notice must include any resolutions to be considered and could include, for example, committee size. General discussion noted the desirability of including some reporting of BSC committee activity over the last year in the Notice such as some commentary from the President or an indication of how many committee meetings and resolutions were had during the year.
207207
<br>
208208
A tentative date for the AGM of Sunday the 31st August 2025 was agreed. Matt will collect the necessary documentation and Rob will prepare the annual financial report when this is done. Steve will draft a Notice of Meeting for committee consideration.
209209
</li>

packages/cfsite/test/index.spec.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,12 +49,12 @@ describe('API endpoints', () => {
4949

5050
it('handles user registration', async () => {
5151
const body = JSON.stringify({
52-
fname: 'Max',
53-
lname: 'Base',
5452
birthyear: '1990',
55-
gender: 'male',
5653
discordusername: '',
5754
email: 'maxbasecode@gmail.com',
55+
fname: 'Max',
56+
gender: 'male',
57+
lname: 'Base',
5858
});
5959

6060
const request = new Request(BASE_URL + '/api/register', {

0 commit comments

Comments
 (0)