-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* New workflow for adding newly opened issues to the CommITCrowd project Perhaps the title says it all. This is a really simple workflow, and it's open for any changes or adjustments * feat: Hide phone number if not filled in in Contentful * Add introduction information to the website (#376) --------- Co-authored-by: Silas Peters <[email protected]> Co-authored-by: Sem van Nieuwenhuizen <[email protected]>
- Loading branch information
1 parent
e100ed1
commit a8c6765
Showing
6 changed files
with
113 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: projects | ||
|
||
on: | ||
issues: | ||
types: | ||
- opened | ||
pull_requests: | ||
types: | ||
- opened | ||
|
||
jobs: | ||
add-to-project: | ||
name: Add opened issue or PR to CommITCrowd project | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/[email protected] | ||
with: | ||
# URL of the project to add issues to | ||
project-url: https://github.com/orgs/svsticky/projects/7 | ||
# A GitHub personal access token with write access to the project | ||
github-token: ${{ secrets.ADD_TO_PROJECT_PAT }} | ||
# A comma-separated list of labels to use as a filter for issue to be added | ||
# labeled: # optional | ||
# The behavior of the labels filter, AND to match all labels, OR to match any label, NOT to exclude any listed label (default is OR) | ||
# label-operator: # optional |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -70,3 +70,6 @@ pnpm-lock.yaml | |
.yarn-integrity | ||
# semantic dist | ||
src/semantic/dist | ||
|
||
# IDEA | ||
.idea/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
import React from 'react'; | ||
import { Button, Card } from 'semantic-ui-react'; | ||
import { graphql, StaticQuery } from 'gatsby'; | ||
import { getLanguage, getTranslation, metadata } from '../data/i18n'; | ||
|
||
class IntroInformation extends React.Component { | ||
render() { | ||
const language = | ||
typeof window !== 'undefined' | ||
? getLanguage(window) | ||
: metadata.defaultLocale; | ||
let intro_information = this.props.data.allContentfulIntroInformation.nodes.filter( | ||
d => d.node_locale === language | ||
)[0]; //get only the first element | ||
|
||
let color = this.props.data.contentfulBoard.color; | ||
console.log(color); | ||
|
||
return ( | ||
<> | ||
<div> | ||
<h2>{intro_information.title}</h2> | ||
<Card fluid> | ||
<div>{intro_information.description.description}</div> | ||
<Button | ||
href={intro_information.introWebsiteUrl} | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
className="button" | ||
style={{ backgroundColor: color, color: 'white' }} | ||
> | ||
{intro_information.linkToWebsiteButtonText} | ||
</Button> | ||
</Card> | ||
</div> | ||
</> | ||
); | ||
} | ||
} | ||
|
||
const introInformationQuery = graphql` | ||
query introInformationQuery { | ||
allContentfulIntroInformation { | ||
nodes { | ||
node_locale | ||
title | ||
linkToWebsiteButtonText | ||
description { | ||
description | ||
} | ||
introWebsiteUrl | ||
} | ||
} | ||
contentfulBoard(current: { eq: true }) { | ||
color | ||
} | ||
} | ||
`; | ||
|
||
export default props => ( | ||
<StaticQuery | ||
query={introInformationQuery} | ||
render={data => <IntroInformation data={data} {...props} />} | ||
/> | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters