Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Freymaurer committed Jun 7, 2024
2 parents 3652c9a + 73327cb commit 602e620
Show file tree
Hide file tree
Showing 2 changed files with 66 additions and 28 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/manage-issues.yml
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 }}
63 changes: 35 additions & 28 deletions src/FsSpreadsheet.Js/FsSpreadsheet.Js.fsproj
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>

0 comments on commit 602e620

Please sign in to comment.