-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/fslaborg/FsSpreadsheet
- Loading branch information
Showing
2 changed files
with
66 additions
and
28 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,31 @@ | ||
name: Manage issues | ||
|
||
on: | ||
issues: | ||
types: | ||
- opened | ||
- reopened | ||
|
||
jobs: | ||
label_issues: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
issues: write | ||
steps: | ||
- run: gh issue edit "$NUMBER" --add-label "$LABELS" | ||
env: | ||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
GH_REPO: ${{ github.repository }} | ||
NUMBER: ${{ github.event.issue.number }} | ||
LABELS: "Status: Needs Triage" | ||
|
||
add-to-project: | ||
name: Add issue to project | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/[email protected] | ||
with: | ||
# You can target a project in a different organization | ||
# to the issue | ||
project-url: https://github.com/orgs/nfdi4plants/projects/10 | ||
github-token: ${{ secrets.ADD_TO_PROJECT_PAT }} |
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 |
---|---|---|
@@ -1,50 +1,57 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<Authors>Kevin Frey, Heinrich Lukas Weil, Oliver Maus, Kevin Schneider, Timo Mühlhaus</Authors> | ||
<Description>Excel IO Extensions for the FsSpreadsheet Datamodel in js environments using exceljs.</Description> | ||
<Summary>Spreadsheet creation and manipulation in FSharp</Summary> | ||
<PackageLicenseExpression>MIT</PackageLicenseExpression> | ||
<PackageIcon>logo.png</PackageIcon> | ||
<PackageTags>F# FSharp spreadsheet Excel xlsx datascience fable fable-library fable-javascript</PackageTags> | ||
<RepositoryUrl>https://github.com/CSBiology/FsSpreadsheet</RepositoryUrl> | ||
<RepositoryType>git</RepositoryType> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<Authors>Kevin Frey, Heinrich Lukas Weil, Oliver Maus, Kevin Schneider, Timo Mühlhaus</Authors> | ||
<Description>Excel IO Extensions for the FsSpreadsheet Datamodel in js environments using exceljs.</Description> | ||
<Summary>Spreadsheet creation and manipulation in FSharp</Summary> | ||
<PackageLicenseExpression>MIT</PackageLicenseExpression> | ||
<PackageIcon>logo.png</PackageIcon> | ||
<PackageTags>F# FSharp spreadsheet Excel xlsx datascience fable fable-library fable-javascript</PackageTags> | ||
<RepositoryUrl>https://github.com/CSBiology/FsSpreadsheet</RepositoryUrl> | ||
<RepositoryType>git</RepositoryType> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>netstandard2.0</TargetFramework> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<None Include="..\..\docs\img\logo.png" Link="logo.png"> | ||
<PackagePath>\</PackagePath> | ||
<Pack>true</Pack> | ||
</None> | ||
<Compile Include="Cell.fs" /> | ||
<Compile Include="Table.fs" /> | ||
<Compile Include="Worksheet.fs" /> | ||
<Compile Include="Workbook.fs" /> | ||
<Compile Include="Xlsx.fs" /> | ||
<ItemGroup> | ||
<None Include="..\..\docs\img\logo.png" Link="logo.png"> | ||
<PackagePath>\</PackagePath> | ||
<Pack>true</Pack> | ||
</None> | ||
<Compile Include="Cell.fs" /> | ||
<Compile Include="Table.fs" /> | ||
<Compile Include="Worksheet.fs" /> | ||
<Compile Include="Workbook.fs" /> | ||
<Compile Include="Xlsx.fs" /> | ||
<Compile Include="Json.fs" /> | ||
<Compile Include="FsExtensions.fs" /> | ||
</ItemGroup> | ||
<Compile Include="FsExtensions.fs" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Fable.Exceljs" Version="1.6.0" /> | ||
<PackageReference Include="Fable.Promise" Version="3.2.0" /> | ||
<PackageReference Include="Thoth.Json.JavaScript" Version="0.1.0" /> | ||
</ItemGroup> | ||
|
||
<!-- Add source files to "fable" folder in Nuget package --> | ||
<ItemGroup> | ||
<!-- Include all files that are compiled with this project --> | ||
<Content Include="@(Compile)" Pack="true" PackagePath="fable/%(RelativeDir)%(Filename)%(Extension)" /> | ||
<!-- Include the project file itself as well --> | ||
<Content Include="$(MSBuildThisFileFullPath)" Pack="true" PackagePath="fable/" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\FsSpreadsheet\FsSpreadsheet.fsproj" /> | ||
</ItemGroup> | ||
<ItemGroup /> | ||
|
||
<PropertyGroup> | ||
<NpmDependencies> | ||
<NpmPackage Name="@nfdi4plants/exceljs" Version="gte 0.1.0 lt 1.0.0" ResolutionStrategy="Max" /> | ||
</NpmDependencies> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<NpmDependencies> | ||
<NpmPackage Name="@nfdi4plants/exceljs" Version="gte 0.1.0 lt 1.0.0" ResolutionStrategy="Max" /> | ||
</NpmDependencies> | ||
</PropertyGroup> | ||
|
||
</Project> |